/* ============================================
   DOM LAB - Modern Professional Stylesheet
   Paleta harmonizada com vermelho (sangue/laboratório)
   ============================================ */

:root {
    /* Primary Colors - Dom Lab Red/Blood Theme */
    --primary: #c41230;
    --primary-light: #e31837;
    --primary-dark: #9e0f28;
    --primary-gradient: linear-gradient(135deg, #c41230 0%, #e63950 100%);
    
    /* Secondary Colors - Burgundy/Dark Red for contrast */
    --secondary: #6b1528;
    --secondary-light: #8b1e35;
    --secondary-dark: #4a0f1c;
    --secondary-gradient: linear-gradient(135deg, #6b1528 0%, #8b1e35 100%);
    
    /* Accent - Gold/Amber for highlights (complementar ao vermelho) */
    --accent: #d4a855;
    --accent-light: #e8c078;
    --accent-dark: #b8923e;
    
    /* Neutrals */
    --dark: #1a1f36;
    --dark-soft: #2d3348;
    --gray-900: #1e2235;
    --gray-800: #2a2f45;
    --gray-700: #3d4259;
    --gray-600: #5a5f73;
    --gray-500: #7a7f8e;
    --gray-400: #9a9fad;
    --gray-300: #c5c8d2;
    --gray-200: #e2e4ea;
    --gray-100: #f0f2f5;
    --gray-50: #f8f9fb;
    --white: #ffffff;
    
    /* Text Colors */
    --text-dark: #1a1f36;
    --text: #5a5f73;
    --text-light: #7a7f8e;
    --light: #f8f9fb;
    
    /* Typography */
    --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    
    /* Borders & Shadows */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--dark);
    color: var(--gray-300);
    font-size: 0.85rem;
    padding: 10px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 30px;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-info i {
    color: var(--secondary);
}

.top-info a:hover {
    color: var(--white);
}

.top-social {
    display: flex;
    gap: 12px;
}

.top-social a {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.top-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    /* top: 52px; */
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    top: 0;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--gray-200);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    padding: 12px 20px;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    gap: 12px;
}

.btn-action {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-resultado {
    background: var(--secondary);
    color: var(--white);
}

.btn-resultado:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 21, 40, 0.4);
}

.btn-login {
    background: var(--primary-gradient);
    color: var(--white);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(196,18,48,0.4);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 132px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74, 15, 28, 0.95) 0%, rgba(158, 15, 40, 0.9) 50%, rgba(196, 18, 48, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    /* max-width: 800px; */
    margin-bottom: 4rem;
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-badge i {
    color: var(--accent);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    max-width: 860px;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(107, 21, 40, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 28px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 168, 85, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.4rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    margin-bottom: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background: var(--white);
    transform: scale(1.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}

/* ============================================
   FEATURES BAR
   ============================================ */
.features-bar {
    background: var(--white);
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.features-bar .container {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 40px;
}

.features-grid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0,102,179,0.1), rgba(0,200,83,0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-label {
    margin-bottom: 12px;
}

.section-label span {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0,102,179,0.1), rgba(0,200,83,0.1));
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-xl);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-desc {
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,102,179,0.3) 100%);
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    text-align: center;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.85rem;
    opacity: 0.9;
}

.about-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.about-feature span {
    font-weight: 600;
    color: var(--dark-soft);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    z-index: -1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    background: var(--primary-gradient);
    color: var(--white);
    grid-column: span 1;
}

.service-card.featured .service-icon {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.service-card.featured h3 {
    color: var(--white);
}

.service-card.featured p {
    color: rgba(255,255,255,0.9);
}

.service-card.featured .service-link {
    color: var(--white);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0,102,179,0.1), rgba(0,200,83,0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

.services-cta {
    text-align: center;
    margin-top: 50px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-icon {
    width: 90px;
    height: 90px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--white);
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.2);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255,255,255,0.3);
    }
    50% {
        box-shadow: 0 0 20px 10px rgba(255,255,255,0.1);
    }
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.cta-text p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 16px;
}

.cta-actions .btn-white {
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.cta-actions .btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.cta-actions .btn-whatsapp {
    background: #25d366;
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.cta-actions .btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-info p {
    color: var(--gray-600);
    margin-bottom: 30px;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.info-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin: 0;
}

.info-content a {
    color: var(--primary);
    font-weight: 500;
}

.info-content a:hover {
    color: var(--primary-dark);
}

.info-content .small {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   MODALS
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,20,40,0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 440px;
    position: relative;
    overflow: hidden;
    transform: translateY(30px) scale(0.95);
    transition: var(--transition);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-decor {
    height: 6px;
    background: var(--primary-gradient);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 1.1rem;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: var(--gray-200);
    color: var(--dark);
}

.modal-content {
    padding: 50px 40px 40px;
}

.modal-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin: 0 auto 24px;
}

.modal-content h2 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.modal-content > p {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 30px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-soft);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 1rem;
    pointer-events: none;
    z-index: 1;
}

.input-wrapper input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    position: relative;
    z-index: 2;
    background: transparent;
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0,102,179,0.1);
}

.input-wrapper input::placeholder {
    color: var(--gray-400);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,102,179,0.35);
}

.modal-footer {
    text-align: center;
    margin-top: 20px;
}

.modal-footer a {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.modal-footer a:hover {
    text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, #1a1f36 0%, #3d2030 50%, #8b2040 100%);
    color: var(--gray-100);
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    color: var(--gray-50);
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 80px;
}

.footer-main {
    padding: 120px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo {
    height: 50px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-4px);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--white);
    padding-left: 8px;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-list i {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    margin-top: 4px;
}

.contact-list div {
    display: flex;
    flex-direction: column;
}

.contact-list span,
.contact-list a {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.contact-list a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 18px 0;
}

.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-row > span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.bensvet-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.bensvet-link:hover {
    color: var(--white);
}

.bensvet-link img {
    height: 32px;
    width: auto;
}

@media (max-width: 576px) {
    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-banner-logo {
        max-width: 100px;
    }
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
    /* display: flex;
    flex-direction: column; */
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card.featured {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .top-bar {
        display: none;
    }
    
    .navbar {
        top: 0;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 10px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-actions {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }
    
    .features-bar .container {
        padding: 30px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        grid-column: span 1;
    }
    
    .hero-stats {
        flex-direction: column;
    }
    
    .stat-card {
        width: 100%;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .experience-badge {
        right: 20px;
        bottom: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .contact-list li {
        justify-content: center;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .modal-content {
        padding: 40px 24px 30px;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
}

/* =====================================================
   PAGE HEADER
===================================================== */
.page-header {
    position: relative;
    padding: 140px 0 80px;
    /* background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); */
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/logo.jpg');
    background-size: cover;
    background-position: center 5%;
    background-repeat: no-repeat;
    /* opacity: 0.15; */
    opacity: 1;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(196, 18, 48, 0.95) 0%, rgba(158, 15, 40, 0.9) 100%); */
    background: linear-gradient(135deg, rgba(196, 18, 48, 0.801) 0%, rgba(158, 15, 39, 0.61) 100%);
    z-index: 2;
}

/* Page Header - Contato */
.page-header-contato .page-header-bg {
    background-image: url('../img/sub-banner-contato.jpg');
    background-position: center 58%;
}

.page-header-contato .page-header-overlay {
    background: linear-gradient(135deg, #c41230bf 0%, #9e0f27ab 100%);
}

/* Page Header - Serviços */
.page-header-servicos .page-header-bg {
    background-image: url('../img/sub-banner-servicos.jpg');
    background-position: center 61%;
}

.page-header-servicos .page-header-overlay {
    background: linear-gradient(81deg, #c41230a1 0%, #9e0f27a3 100%);
}

.page-header .container {
    position: relative;
    z-index: 3;
}

.page-header-content {
    text-align: center;
    color: #fff;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb i {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb span {
    color: #fff;
    font-weight: 600;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.page-header p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* =====================================================
   ABOUT INTRO SECTION
===================================================== */
.about-intro {
    padding: 100px 0;
    background: #fff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-intro-content .section-label {
    margin-bottom: 15px;
}

.about-intro-content .section-title {
    margin-bottom: 30px;
}

.about-text p {
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-text p.lead {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 500;
}

.about-text p strong {
    color: var(--primary);
}

.about-intro-image {
    position: relative;
}

.about-intro-image .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-intro-image .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.about-intro-image .image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary);
    border-radius: 20px;
    z-index: -1;
}

.experience-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--primary);
    color: #fff;
    padding: 25px 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-lg);
}

.experience-card .experience-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.experience-card .experience-text {
    display: flex;
    flex-direction: column;
}

.experience-card .number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.experience-card .label {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* =====================================================
   MISSION VISION VALUES
===================================================== */
.mvv-section {
    padding: 100px 0;
    background: var(--light);
}

.mvv-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvv-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 35px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.mvv-card.mission::before {
    background: var(--primary);
}

.mvv-card.vision::before {
    background: var(--secondary);
}

.mvv-card.values::before {
    background: var(--accent);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
}

.mvv-card.vision .mvv-icon {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}

.mvv-card.values .mvv-icon {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.mvv-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.mvv-card p {
    color: var(--text);
    line-height: 1.7;
}

.mvv-card ul {
    list-style: none;
    text-align: left;
}

.mvv-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text);
    border-bottom: 1px solid #f0f0f0;
}

.mvv-card ul li:last-child {
    border-bottom: none;
}

.mvv-card ul li i {
    color: var(--primary);
    font-size: 0.85rem;
}

/* =====================================================
   DIFFERENTIALS SECTION
===================================================== */
.differentials-section {
    padding: 100px 0;
    background: #fff;
}

.differentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.differentials-content .section-label {
    margin-bottom: 15px;
}

.differentials-content .section-title {
    margin-bottom: 15px;
}

.differentials-content .section-desc {
    color: var(--text);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.differentials-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.differential-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.differential-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, rgba(196, 18, 48, 0.1) 0%, rgba(196, 18, 48, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    transition: var(--transition-base);
}

.differential-item:hover .differential-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.differential-text h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.differential-text p {
    color: var(--text);
    line-height: 1.6;
    font-size: 0.95rem;
}

.differentials-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    margin-top: 50px;
}

/* =====================================================
   STATS SECTION (ABOUT PAGE)
===================================================== */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    color: #fff;
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}


/* =====================================================
   COMMITMENT SECTION
===================================================== */
.commitment-section {
    padding: 100px 0;
    background: var(--light);
}

.commitment-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.commitment-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
}

.commitment-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.commitment-content > p {
    font-size: 1.15rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 40px;
}

.commitment-quote {
    position: relative;
    padding: 30px 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.commitment-quote i {
    position: absolute;
    top: -15px;
    left: 30px;
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.3;
}

.commitment-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

/* =====================================================
   ABOUT PAGE RESPONSIVE
===================================================== */
@media (max-width: 1024px) {
    .about-intro-grid,
    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-intro-image {
        order: -1;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .about-intro,
    .mvv-section,
    .differentials-section,
    .commitment-section {
        padding: 60px 0;
    }
    
    .experience-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        justify-content: center;
    }
    
    .about-intro-image .image-accent {
        display: none;
    }
    
    .stats-section {
        padding: 60px 0;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .commitment-quote {
        padding: 25px 20px;
    }
    
    .commitment-quote blockquote {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .mvv-card {
        padding: 30px 25px;
    }
    
    .differential-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* =====================================================
   SERVICES PAGE - FULL STYLES
===================================================== */

/* Services Intro */
.services-intro {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--light) 0%, #fff 100%);
}

.services-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(196, 18, 48, 0.1) 0%, rgba(196, 18, 48, 0.05) 100%);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.intro-badge i {
    font-size: 1.1rem;
}

.services-intro-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.services-intro-content > p {
    font-size: 1.15rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 40px;
}

.intro-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--gray-200);
}

.intro-stat {
    text-align: center;
}

.intro-stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.intro-stat .label {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
}

/* Services Main Section */
.services-main {
    padding: 60px 0 100px;
    background: #fff;
}

/* Filter Buttons */
.services-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--light);
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(196, 18, 48, 0.1);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(196, 18, 48, 0.3);
}

.filter-btn i {
    font-size: 0.9rem;
}

/* Services Grid Full */
.services-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Service Card Full */
.service-card-full {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-card-full:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(196, 18, 48, 0.12);
    border-color: var(--primary-light);
}

.service-card-header {
    position: relative;
    padding: 30px 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-icon-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 8px 20px rgba(196, 18, 48, 0.3);
}

.service-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-badge.urgencia {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
}

.service-badge.especializado {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #fff;
}

.service-card-body {
    padding: 25px 30px;
    flex: 1;
}

.service-card-body h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card-body > p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gray-100);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: var(--primary);
    font-size: 0.8rem;
    width: 16px;
}

.service-card-footer {
    padding: 20px 30px;
    background: var(--light);
    border-top: 1px solid var(--gray-200);
}

.delivery-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
}

.delivery-time i {
    color: var(--primary);
}

/* Workflow Section */
.workflow-section {
    padding: 100px 0;
    background: var(--light);
}

.section-header.center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.center .section-label {
    justify-content: center;
}

.workflow-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.workflow-step {
    text-align: center;
    max-width: 200px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(196, 18, 48, 0.08);
    line-height: 1;
    z-index: 0;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(196, 18, 48, 0.3);
}

.workflow-step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.workflow-step p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.6;
}

.workflow-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 30px;
    color: var(--gray-400);
    font-size: 1.2rem;
}

/* Service Differentials */
.service-differentials {
    padding: 100px 0;
    background: #fff;
}

.differentials-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.diff-content .section-label {
    margin-bottom: 15px;
}

.diff-content .section-title {
    margin-bottom: 15px;
}

.diff-content p {
    color: var(--text);
    line-height: 1.8;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.diff-item {
    padding: 30px;
    background: var(--light);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.diff-item:hover {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.diff-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(196, 18, 48, 0.1) 0%, rgba(196, 18, 48, 0.05) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.diff-item:hover .diff-icon {
    background: var(--primary);
    color: #fff;
}

.diff-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.diff-item p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.6;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Page Responsive */
@media (max-width: 1200px) {
    .services-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .differentials-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .diff-content {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .workflow-timeline {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .workflow-connector {
        display: none;
    }
    
    .workflow-step {
        flex: 1 1 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .services-intro {
        padding: 60px 0;
    }
    
    .intro-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .services-filter {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .services-grid-full {
        grid-template-columns: 1fr;
    }
    
    .workflow-step {
        flex: 1 1 100%;
    }
    
    .diff-grid {
        grid-template-columns: 1fr;
    }
    
    .service-differentials,
    .workflow-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .service-card-header,
    .service-card-body {
        padding: 20px;
    }
    
    .service-card-footer {
        padding: 15px 20px;
    }
    
    .service-icon-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .services-intro-content h2 {
        font-size: 1.8rem;
    }
    
    .intro-stat .number {
        font-size: 2rem;
    }
}

/* ============================================
   PÁGINA DE SOLICITAÇÃO DE EXAMES
   ============================================ */

/* Formulário Solicitação */
.solicitacao-section {
    padding: 50px 0 80px;
    background: var(--gray-50);
}

.solicitacao-form {
    max-width: 960px;
    margin: 0 auto;
}

/* Aviso Jejum */
.form-aviso {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #fff3cd, #ffeeba);
    border: 1px solid #ffc107;
    border-radius: var(--radius-md);
    padding: 18px 24px;
    color: #856404;
    margin-bottom: 30px;
}

.form-aviso i { font-size: 1.4rem; color: #d39e00; }
.form-aviso p { margin: 0; font-size: 0.95rem; }

/* Seções do formulário */
.form-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 30px;
    margin-bottom: 24px;
}

.form-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-100);
}

.form-section-header i {
    font-size: 1.3rem;
    color: var(--primary);
}

.form-section-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.form-section-header small {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-left: auto;
}

/* Grid do formulário de dados */
.form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.col-2 { grid-column: span 2; }
.form-group.col-full { grid-column: span 4; }

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 14px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 0.95rem;
    color: var(--dark);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(196, 18, 48, 0.1);
}

/* Categorias de exames - cada categoria é uma form-section separada */
.categoria-section .exames-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 6px 16px;
}

/* Checkboxes de exames */
.exame-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    margin: 2px 0;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.exame-check:hover {
    background: var(--gray-50);
}

.exame-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

.exame-check span {
    font-size: 0.95rem;
    color: var(--gray-700);
}

.exame-check input:checked + span {
    color: var(--primary);
    font-weight: 600;
}

/* Campos extra dentro das categorias */
.exame-extra {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    margin-top: 4px;
}

.exame-extra label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
    white-space: nowrap;
    min-width: 120px;
}

.exame-extra input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 0.9rem;
    transition: var(--transition);
}

.exame-extra input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(196, 18, 48, 0.1);
}

.exame-extra.condicional {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: rgba(196, 18, 48, 0.03);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 12px 16px;
    margin: 4px 0 4px 28px;
    animation: slideDown 0.3s ease;
}

.exame-extra.condicional.visivel {
    display: flex;
}

.exame-extra.condicional input[type="text"] {
    width: 100%;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-weight: 400;
    min-width: auto;
}

.radio-group input[type="radio"] {
    accent-color: var(--primary);
}

/* Resumo */
.form-resumo {
    border: 2px solid var(--primary-light);
}

.resumo-lista {
    margin-bottom: 20px;
    min-height: 60px;
}

.resumo-vazio {
    color: var(--gray-400);
    font-style: italic;
    text-align: center;
    padding: 20px;
}

.resumo-grupo {
    margin-bottom: 12px;
}

.resumo-grupo strong {
    display: block;
    color: var(--dark);
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.resumo-grupo ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.resumo-grupo li {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--gray-700);
}

.resumo-total {
    color: var(--primary);
    font-size: 0.95rem;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100);
}

/* Botões de ação */
.form-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

/* Responsivo Formulário */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.col-2,
    .form-group.col-full {
        grid-column: span 1;
    }
    .form-section { padding: 20px 16px; }
    .categoria-section .exames-grid { grid-template-columns: 1fr; }
    .form-actions {
        flex-direction: column;
    }
    .form-actions .btn { width: 100%; justify-content: center; }
    .form-aviso { flex-direction: column; text-align: center; }
    .exame-extra { flex-direction: column; align-items: flex-start; }
    .exame-extra label { min-width: auto; }
    .exame-extra.condicional { margin-left: 12px; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

/* Contact Info Cards */
.contact-info-section {
    padding: 80px 0 40px;
    background: var(--gray-50);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-info-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--white);
    font-size: 1.5rem;
}

.contact-info-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

.contact-info-card a {
    color: var(--primary);
    font-weight: 500;
}

.contact-info-card a:hover {
    color: var(--primary-dark);
}

.contact-info-detail {
    font-size: 0.8rem !important;
    color: var(--text-light) !important;
    margin-top: 4px !important;
}

/* Contact Main (Form + Map) */
.contact-main-section {
    padding: 80px 0;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form-wrapper .section-title {
    margin-bottom: 8px;
}

.contact-form-desc {
    color: var(--text);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

/* ============================================
   CONTACT CHANNELS (Canais de Atendimento)
   ============================================ */
.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-channel-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-channel-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    border-radius: 4px 0 0 4px;
    transition: width 0.3s ease;
}

.contact-channel-card.whatsapp::before { background: #25d366; }
.contact-channel-card.phone::before { background: var(--primary); }
.contact-channel-card.email::before { background: #0078d4; }
.contact-channel-card.instagram::before { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.contact-channel-card:hover {
    transform: translateX(6px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.contact-channel-card.whatsapp:hover { border-color: #25d366; }
.contact-channel-card.phone:hover { border-color: var(--primary); }
.contact-channel-card.email:hover { border-color: #0078d4; }
.contact-channel-card.instagram:hover { border-color: #dc2743; }

.channel-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    color: var(--white);
}

.contact-channel-card.whatsapp .channel-icon { background: #25d366; }
.contact-channel-card.phone .channel-icon { background: var(--primary); }
.contact-channel-card.email .channel-icon { background: #0078d4; }
.contact-channel-card.instagram .channel-icon {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.channel-info {
    flex: 1;
    min-width: 0;
}

.channel-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.channel-info span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.channel-info p {
    font-size: 0.78rem;
    color: var(--gray-400);
    margin-top: 4px;
    line-height: 1.3;
}

.channel-arrow {
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-channel-card:hover .channel-arrow {
    transform: translateX(4px);
}

.contact-channel-card.whatsapp:hover .channel-arrow { color: #25d366; }
.contact-channel-card.phone:hover .channel-arrow { color: var(--primary); }
.contact-channel-card.email:hover .channel-arrow { color: #0078d4; }
.contact-channel-card.instagram:hover .channel-arrow { color: #dc2743; }

@media (max-width: 640px) {
    .contact-channel-card {
        padding: 16px 18px;
        gap: 14px;
    }

    .channel-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .channel-info h4 {
        font-size: 0.9rem;
    }

    .channel-info span {
        font-size: 0.8rem;
    }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gray-300);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(196, 18, 48, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-family);
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: var(--gray-50, #f9fafb);
}

.faq-question span {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.faq-item.active .faq-question span {
    color: var(--primary);
}

.faq-question i {
    font-size: 0.75rem;
    color: var(--gray-400);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 18px;
}

.faq-answer p {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.65;
}

@media (max-width: 640px) {
    .faq-question {
        padding: 14px 16px;
    }

    .faq-question span {
        font-size: 0.85rem;
    }

    .faq-answer {
        padding: 0 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 16px 14px;
    }
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-form-group.full-width {
    grid-column: span 2;
}

.contact-form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-input-wrapper i {
    position: absolute;
    left: 14px;
    color: var(--gray-400);
    font-size: 0.9rem;
    z-index: 1;
}

.contact-input-wrapper input,
.contact-input-wrapper select,
.contact-input-wrapper textarea {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 0.9rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.contact-input-wrapper input:focus,
.contact-input-wrapper select:focus,
.contact-input-wrapper textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(196, 18, 48, 0.1);
}

.contact-input-wrapper input::placeholder,
.contact-input-wrapper textarea::placeholder {
    color: var(--gray-400);
}

.contact-input-wrapper.textarea-wrapper {
    align-items: flex-start;
}

.contact-input-wrapper.textarea-wrapper i {
    top: 14px;
}

.contact-input-wrapper textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit-contact {
    align-self: flex-start;
    padding: 14px 32px;
    font-size: 0.95rem;
    gap: 10px;
    transition: var(--transition);
}

.btn-submit-contact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Avatar Selector - Depoimento */
.avatar-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0;
    justify-content: center;
}

.avatar-option {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid var(--gray-200);
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.avatar-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.avatar-option:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.avatar-option:hover img {
    transform: scale(1.1);
}

.avatar-option.selected {
    border-color: var(--primary);
    box-shadow: 0 4px 18px rgba(var(--primary-rgb, 0, 123, 255), 0.4);
    transform: translateY(-3px);
}

.avatar-option.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 22px;
    height: 22px;
    background: #27ae60;
    color: #fff;
    border-radius: 50%;
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    z-index: 2;
}

.avatar-selected-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0 0;
    min-height: 44px;
}

.avatar-preview-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    border: 2px solid var(--primary);
    flex-shrink: 0;
}

.avatar-preview-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-preview-label {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 500;
}

.avatar-selected-preview.has-avatar .avatar-preview-label {
    color: #27ae60;
    font-weight: 600;
}

/* ============================================
   BOTÃO DEIXE SEU DEPOIMENTO
   ============================================ */
.btn-deixe-depoimento {
    margin-top: 20px;
    padding: 12px 28px;
    font-size: 0.95rem;
    gap: 10px;
    border-radius: var(--radius-sm);
    animation: pulseBtn 2.5s ease-in-out infinite;
}

@keyframes pulseBtn {
    0%, 100% { box-shadow: 0 0 0 0 rgba(196, 18, 48, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(196, 18, 48, 0); }
}

/* ============================================
   MODAL DEPOIMENTO
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-depoimento {
    background: var(--white);
    border-radius: var(--radius-lg, 16px);
    padding: 40px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-depoimento {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--gray-100, #f3f4f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.2s ease;
    z-index: 1;
}

.modal-close:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-depoimento-header {
    text-align: center;
    margin-bottom: 28px;
}

.modal-depoimento-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #e8254a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(196, 18, 48, 0.3);
}

.modal-depoimento-header h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.modal-depoimento-header p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
}

.modal-depoimento .contact-form {
    gap: 16px;
}

.modal-depoimento .contact-form-row {
    gap: 16px;
}

.btn-submit-depoimento {
    width: 100%;
    padding: 14px 32px;
    font-size: 0.95rem;
    gap: 10px;
    transition: var(--transition);
    justify-content: center;
}

.btn-submit-depoimento:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Modal scrollbar personalizada */
.modal-depoimento::-webkit-scrollbar {
    width: 6px;
}

.modal-depoimento::-webkit-scrollbar-track {
    background: transparent;
}

.modal-depoimento::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 3px;
}

/* Modal Responsivo */
@media (max-width: 640px) {
    .modal-depoimento {
        padding: 24px 20px;
        max-height: 95vh;
    }

    .modal-depoimento .contact-form-row {
        grid-template-columns: 1fr;
    }

    .modal-depoimento-icon {
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
    }

    .modal-depoimento-header h2 {
        font-size: 1.25rem;
    }
}

/* Contact Map */
.contact-map-wrapper .section-title {
    margin-bottom: 20px;
}

.contact-map {
    width: 100%;
    height: 360px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-200);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

.contact-map-info {
    display: flex;
    gap: 24px;
    margin-top: 16px;
}

.map-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text);
}

.map-info-item i {
    color: var(--primary);
    font-size: 1rem;
}

/* Social Section */
.contact-social-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.section-desc {
    color: var(--text);
    font-size: 1rem;
    margin-top: 8px;
}

.contact-social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.social-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.social-card.instagram:hover {
    border-color: #e1306c;
}

.social-card.facebook:hover {
    border-color: #1877f2;
}

.social-card.whatsapp:hover {
    border-color: #25d366;
}

.social-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.social-card.instagram .social-card-icon {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
}

.social-card.facebook .social-card-icon {
    background: #1877f2;
    color: var(--white);
}

.social-card.whatsapp .social-card-icon {
    background: #25d366;
    color: var(--white);
}

.social-card-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.social-card-info span {
    font-size: 0.85rem;
    color: var(--text);
}

.social-card-arrow {
    margin-left: auto;
    color: var(--gray-400);
    font-size: 0.8rem;
    transition: var(--transition);
}

.social-card:hover .social-card-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

/* ============================================
   TESTIMONIALS / DEPOIMENTOS
   ============================================ */
.testimonials-section {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.testimonials-carousel {
    margin-top: 48px;
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    flex: 0 0 calc((100% - 48px) / 3);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--gray-200);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-avatar i {
    color: var(--white);
    font-size: 1.6rem;
    background: var(--primary-gradient);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.testimonial-stars i {
    color: #f5a623;
    font-size: 0.85rem;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-quote {
    position: absolute;
    bottom: 16px;
    right: 20px;
    font-size: 2rem;
    color: var(--gray-200);
}

/* Testimonials Navigation */
.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.testimonial-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gray-200);
    background: var(--white);
    color: var(--text-dark);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.testimonials-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 5px;
}

/* Contact CTA */
.contact-cta-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.contact-cta {
    background: var(--secondary-gradient);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.contact-cta-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

.contact-cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.btn-outline-light {
    border-color: rgba(255,255,255,0.4) !important;
    color: var(--white) !important;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: var(--white) !important;
}

/* ============================================
   CONTACT PAGE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .testimonial-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-group.full-width {
        grid-column: span 1;
    }
    .contact-social-grid {
        grid-template-columns: 1fr;
    }
    .contact-cta {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
    }
    .contact-cta-actions {
        flex-direction: column;
        width: 100%;
    }
    .contact-cta-actions .btn {
        justify-content: center;
    }
    .btn-submit-contact {
        width: 100%;
        justify-content: center;
    }
    .testimonial-card {
        flex: 0 0 100%;
    }
    .contact-map {
        height: 280px;
    }
}

/* Print styles — impressão acontece em janela dedicada, aqui apenas fallback */
@media print {
    .navbar, .page-hero, .footer, .whatsapp-float, .form-actions, .form-aviso, .form-resumo { display: none !important; }
    .solicitacao-section { padding: 0; background: white; }
    .form-section { box-shadow: none; border: 1px solid #ddd; padding: 10px !important; margin-bottom: 8px !important; }
    .categoria-section .exames-grid { gap: 2px 10px; }
    .exame-check:has(input:not(:checked)) { display: none; }
    .categoria-section:not(:has(.exame-check input:checked)) { display: none; }
    .exame-extra.condicional:not(.visivel) { display: none; }
}
