:root {
            --primary-color: #0284C7; 
            --primary-color-hover: #0369A1;
            --primary-color-glow: rgba(2, 132, 199, 0.25);
            --primary-color-light: rgba(2, 132, 199, 0.08);
            --brand-gray: #6D6E71;
            --dark-gray: #0F172A;
            --medium-gray: #334155;
            --light-bg: #F8FAFC;
            --border-color: #E2E8F0;
            --white: #FFFFFF;
            --black: #000000;
            --text-main: #475569;
            --transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
            --font-family: 'Inter', sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; outline: none; }

        * { scrollbar-width: thin; scrollbar-color: var(--primary-color) var(--light-bg); }
        ::-webkit-scrollbar { width: 10px; }
        ::-webkit-scrollbar-track { background: var(--light-bg); }
        ::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 5px; border: 2px solid var(--light-bg); }
        ::-webkit-scrollbar-thumb:hover { background: var(--primary-color-hover); }

        html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
        body { font-family: var(--font-family); color: var(--text-main); background-color: var(--white); line-height: 1.6; overflow-x: hidden; width: 100%; max-width: 100vw; }
        .container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 30px; position: relative; z-index: 2; }

        h1, h2, h3 { color: var(--dark-gray); font-weight: 800; line-height: 1.2; }
        
        .section-tag {
            display: inline-flex; align-items: center; gap: 8px;
            background-color: var(--primary-color-light); color: var(--primary-color);
            padding: 6px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; border: 1px solid rgba(2, 132, 199, 0.2);
        }

        .btn { display: inline-flex; align-items: center; justify-content: center; padding: 18px 36px; border-radius: 8px; font-weight: 700; font-size: 1.1rem; text-decoration: none; transition: var(--transition); cursor: pointer; border: none; gap: 10px; box-shadow: 0 4px 14px rgba(0,0,0,0.08); text-align: center; }
        .btn-primary { background-color: var(--primary-color); color: var(--white); box-shadow: 0 8px 24px var(--primary-color-glow); }
        .btn-primary:hover { background-color: var(--primary-color-hover); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(2, 132, 199, 0.35); }

        .fab-container { position: fixed; bottom: 15px; right: 15px; display: flex; flex-direction: column; gap: 15px; z-index: 9999; padding: 20px; align-items: flex-end; }
        .fab-btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--white); text-decoration: none; box-shadow: 0 6px 20px rgba(0,0,0,0.15); transition: var(--transition); border: none; cursor: pointer; }
        .fab-whatsapp { background-color: #25D366; width: 56px; border-radius: 28px; justify-content: flex-start; padding: 0 14px; opacity: 1; overflow: hidden; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        .fab-whatsapp i { flex-shrink: 0; font-size: 28px; }
        .whatsapp-text { font-size: 16px; font-weight: 700; color: var(--white); white-space: nowrap; opacity: 0; transform: translateX(15px); transition: all 0.3s ease; margin-left: 10px; }
        .fab-container:hover .fab-whatsapp { width: 165px; padding: 0 18px; box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); }
        .fab-container:hover .fab-whatsapp .whatsapp-text { opacity: 1; transform: translateX(0); transition-delay: 0.1s; }
        .fab-container:hover .fab-whatsapp:hover { background-color: #1EBE5D; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5); }
        .fab-top { background-color: var(--primary-color); opacity: 0; visibility: hidden; transform: translateY(20px); }
        .fab-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
        .fab-top:hover { background-color: var(--primary-color-hover); transform: scale(1.1) translateY(-3px) !important; box-shadow: 0 10px 25px var(--primary-color-glow); }

        .hero {
            position: relative;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(2, 132, 199, 0.85) 100%), 
                        url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            padding: 140px 0 200px; 
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 80% calc(100% - 60px), 80% 100%, 50% 100%, 50% calc(100% - 60px), 20% calc(100% - 60px), 20% calc(100% - 120px), 0 calc(100% - 120px));
            max-width: 100%;
            text-align: center;
        }

        .hero-logo { height: 130px; margin: 0 auto 50px auto; display: block; animation: fadeInDown 0.8s ease-out forwards; filter: brightness(0) invert(1); }
        .hero-text { animation: slideInUp 0.8s ease-out forwards; animation-delay: 0.2s; opacity: 0; }
        .hero-text h1 { font-size: 4.2rem; letter-spacing: -2px; margin-bottom: 24px; color: var(--white); }
        .hero-text h1 span { color: #38BDF8; position: relative; display: inline-block; }
        .hero-text p { font-size: 1.25rem; color: rgba(255, 255, 255, 0.85); margin: 0 auto 45px auto; max-width: 800px; }

        .section { padding: 120px 0; position: relative; }
        .bg-light { background-color: #F8FAFC; }
        .section-header { text-align: center; max-width: 700px; margin: 0 auto 70px; opacity: 0; }
        .section-header h2 { font-size: 2.8rem; margin-bottom: 15px; letter-spacing: -1px; }
        .section-header p { font-size: 1.15rem; color: var(--brand-gray); }

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

        .service-card-elegant {
            background: #FFFFFF;
            border-radius: 20px;
            padding: 45px 35px;
            border: 1px solid #E2E8F0;
            box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04);
            transition: var(--transition);
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
            opacity: 0;
        }

        .service-card-elegant::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), #38BDF8);
            opacity: 0.3;
            transition: var(--transition);
        }

        .service-card-elegant:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(2, 132, 199, 0.12);
            border-color: rgba(2, 132, 199, 0.3);
        }

        .service-card-elegant:hover::before { opacity: 1; }

        .card-number {
            font-size: 0.85rem;
            font-weight: 800;
            color: var(--primary-color);
            background: var(--primary-color-light);
            padding: 4px 12px;
            border-radius: 12px;
            display: inline-block;
            margin-bottom: 25px;
            width: fit-content;
            letter-spacing: 0.5px;
        }

        .card-icon-wrapper {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(2, 132, 199, 0.1) 0%, rgba(56, 189, 248, 0.15) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: var(--primary-color);
            margin-bottom: 25px;
            transition: var(--transition);
        }

        .service-card-elegant:hover .card-icon-wrapper {
            background: var(--primary-color);
            color: var(--white);
            transform: scale(1.08) rotate(-3deg);
            box-shadow: 0 10px 20px var(--primary-color-glow);
        }

        .service-card-elegant h3 { font-size: 1.45rem; margin-bottom: 15px; color: var(--dark-gray); }
        .service-card-elegant p { font-size: 1rem; color: var(--text-main); line-height: 1.65; margin-bottom: 30px; }
        .card-link { display: inline-flex; align-items: center; gap: 8px; color: var(--primary-color); font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: var(--transition); }
        .service-card-elegant:hover .card-link { color: var(--primary-color-hover); }
        .service-card-elegant:hover .card-link i { transform: translateX(6px); }

        .service-card-elegant.featured {
            background: linear-gradient(145deg, #0F172A 0%, #1E293B 100%);
            border-color: #334155;
            color: var(--white);
        }

        .service-card-elegant.featured h3 { color: var(--white); }
        .service-card-elegant.featured p { color: rgba(255, 255, 255, 0.8); }
        .service-card-elegant.featured .card-number { background: rgba(2, 132, 199, 0.25); color: #38BDF8; }
        .service-card-elegant.featured .card-icon-wrapper { background: rgba(2, 132, 199, 0.2); color: #38BDF8; }
        .service-card-elegant.featured:hover .card-icon-wrapper { background: var(--primary-color); color: var(--white); }
        .service-card-elegant.featured .card-link { color: #38BDF8; }
        .service-card-elegant.featured .card-link:hover { color: var(--white); }

        .benefits { 
            background-color: var(--dark-gray); 
            color: var(--white); 
            padding: 190px 0; 
            position: relative; 
            overflow: hidden;
            max-width: 100%;
            clip-path: polygon(0 60px, 15% 60px, 15% 0, 40% 0, 40% 60px, 75% 60px, 75% 0, 100% 0, 100% calc(100% - 60px), 85% calc(100% - 60px), 85% 100%, 55% 100%, 55% calc(100% - 60px), 25% calc(100% - 60px), 25% 100%, 0 100%);
        }
        
        .benefits h2 { color: var(--white); }
        .benefits-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
        .benefits-text h2 { font-size: 3rem; margin-bottom: 30px; }
        .benefits-text h2 span { color: var(--primary-color); }
        .benefit-list { list-style: none; }
        .benefit-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 25px; font-size: 1.1rem; color: rgba(255, 255, 255, 0.9); }
        .benefit-list i { color: var(--primary-color); font-size: 1.5rem; margin-top: 2px; background: rgba(2, 132, 199, 0.15); padding: 4px; border-radius: 50%; }

        .benefits-visual { position: relative; display: flex; justify-content: center; align-items: center; }

        .crosses-container { 
            position: absolute; width: 100%; height: 100%; top: 0; left: 0; 
            z-index: 0; pointer-events: none; 
        }

        .medical-cross {
            position: absolute;
            clip-path: polygon(35% 0, 65% 0, 65% 35%, 100% 35%, 100% 65%, 65% 65%, 65% 100%, 35% 100%, 35% 65%, 0 65%, 0 35%, 35% 35%);
            animation: floatCross 8s ease-in-out infinite;
        }

        .cross-glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            z-index: -1;
            animation: pulseGlow 6s ease-in-out infinite alternate;
        }

        .cross-1 {
            width: 280px; height: 280px;
            top: -50px; left: -60px;
            background: linear-gradient(135deg, var(--primary-color) 0%, rgba(2, 132, 199, 0.15) 100%);
            transform: rotate(15deg);
        }
        .glow-1 { width: 220px; height: 220px; top: -20px; left: -30px; background: var(--primary-color); opacity: 0.35; }

        .cross-2 {
            width: 150px; height: 150px;
            bottom: -20px; right: -40px;
            background: linear-gradient(135deg, #38BDF8 0%, rgba(56, 189, 248, 0.1) 100%);
            animation-delay: -3.5s;
            transform: rotate(-10deg);
        }
        .glow-2 { width: 120px; height: 120px; bottom: 0; right: -25px; background: #38BDF8; opacity: 0.25; animation-delay: -2s; }

        .cross-3 {
            width: 70px; height: 70px;
            top: 20px; right: 20px;
            background: rgba(255, 255, 255, 0.15);
            animation-delay: -1.5s;
        }

        .finance-card { background: rgba(15, 23, 42, 0.7); backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.1); border-top: 3px solid var(--primary-color); border-radius: 16px; padding: 35px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); position: relative; z-index: 1; width: 100%; max-width: 400px;}
        .finance-card h3 { margin-bottom: 20px; font-size: 1.3rem; color: var(--white); }

        .testimonials-carousel-container { position: relative; width: 100%; max-width: 1000px; margin: 0 auto; height: 400px; display: flex; justify-content: center; align-items: center; overflow: hidden; opacity: 0; clip-path: inset(0); }
        .carousel-item { position: absolute; width: 380px; transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); opacity: 0; transform: translateX(0) scale(0.8); text-align: center; pointer-events: none; display: flex; flex-direction: column; align-items: center; }
        .carousel-item.active { opacity: 1; transform: translateX(0) scale(1.15); z-index: 3; pointer-events: auto; }
        .carousel-item.prev { opacity: 0.4; transform: translateX(-85%) scale(0.85); z-index: 2; }
        .carousel-item.next { opacity: 0.4; transform: translateX(85%) scale(0.85); z-index: 2; }
        .client-profile { display: flex; flex-direction: column; align-items: center; margin-bottom: 15px; }
        .client-profile strong { color: var(--dark-gray); font-size: 1.1rem; display: block; }
        .client-profile span { font-size: 0.85rem; color: var(--brand-gray); }
        .testimonial-quote { font-style: italic; font-size: 1.05rem; color: var(--text-main); line-height: 1.6; }

        .cta-final { 
            background: linear-gradient(135deg, var(--primary-color) 0%, #0369A1 100%); 
            color: var(--white); 
            padding: 170px 0 130px; 
            position: relative; 
            overflow: hidden;
            max-width: 100%;
            clip-path: polygon(0 0, 20% 0, 20% 60px, 50% 60px, 50% 0, 80% 0, 80% 60px, 100% 60px, 100% 100%, 0 100%);
        }
        
        .cta-final::before { content: ''; position: absolute; top: 50%; left: 20%; transform: translate(-50%, -50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); pointer-events: none; z-index: 0; }
        .contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .contact-text h2 { font-size: 3.5rem; color: var(--white); margin-bottom: 20px; letter-spacing: -1px; line-height: 1.1; }
        .contact-text p { font-size: 1.25rem; color: rgba(255, 255, 255, 0.9); margin-bottom: 40px; max-width: 500px; }
        .contact-text .btn-whatsapp { background-color: var(--white); color: var(--primary-color); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
        .contact-text .btn-whatsapp:hover { background-color: var(--light-bg); color: var(--primary-color-hover); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.3); }
        
        .contact-form-card { background: var(--white); padding: 45px; border-radius: 16px; box-shadow: 0 25px 50px rgba(0,0,0,0.25); color: var(--text-main); }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; font-weight: 600; color: var(--dark-gray); margin-bottom: 8px; font-size: 0.95rem; }
        .form-group input, .form-group textarea, .form-group select { width: 100%; padding: 16px; border: 1px solid var(--border-color); border-radius: 8px; background-color: var(--light-bg); font-family: var(--font-family); font-size: 1rem; color: var(--text-main); transition: var(--transition); }
        .form-group textarea { min-height: 120px; resize: vertical; }
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary-color); box-shadow: 0 0 0 4px var(--primary-color-light); background-color: var(--white); }
        .btn-submit { width: 100%; font-size: 1.1rem; padding: 20px; }

        .map-container { margin-top: 60px; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.3); opacity: 0; border: 4px solid rgba(255,255,255,0.1); }
        .map-container iframe { display: block; width: 100%; height: 400px; border: none; }
        footer { background-color: #0A0A0C; color: rgba(255, 255, 255, 0.5); padding: 25px 0; font-size: 0.85rem; }
        footer .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
        footer p { margin: 0; }
        .developer-credit { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(255, 255, 255, 0.4); text-decoration: none; transition: var(--transition); }
        .developer-credit:hover { color: rgba(255, 255, 255, 0.7); }
        .developer-credit img { height: 14px; filter: brightness(0) invert(1) opacity(0.4); transition: var(--transition); }
        .developer-credit:hover img { filter: brightness(0) invert(1) opacity(0.8); }

        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        @keyframes slideInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes slideInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
        @keyframes slideInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
        @keyframes floatCross { 
            0% { transform: translateY(0) scale(1) rotate(var(--rotation, 0deg)); } 
            50% { transform: translateY(-20px) scale(1.05) rotate(var(--rotation, 5deg)); } 
            100% { transform: translateY(0) scale(1) rotate(var(--rotation, 0deg)); } 
        }
        @keyframes pulseGlow {
            0% { opacity: 0.2; transform: scale(0.9); }
            100% { opacity: 0.4; transform: scale(1.1); }
        }

        .reveal { opacity: 0; } .reveal-left { opacity: 0; } .reveal-right { opacity: 0; }
        .animate-in { animation: slideInUp 0.8s ease-out forwards; }
        .animate-left { animation: slideInLeft 0.8s ease-out forwards; }
        .animate-right { animation: slideInRight 0.8s ease-out forwards; }
        .animate-fade { animation: fadeIn 1s ease-out forwards; }

        @media (max-width: 1024px) {
            .hero-text h1 { font-size: 3.6rem; }
            .services-wrapper { grid-template-columns: 1fr; gap: 25px; }
            .benefits-content { grid-template-columns: 1fr; text-align: center; }
            .contact-wrapper { grid-template-columns: 1fr; text-align: center; gap: 40px;}
            .contact-text p { margin: 0 auto 40px auto; }
            .contact-form-card { text-align: left; }
            .carousel-item.prev { transform: translateX(-70%) scale(0.85); }
            .carousel-item.next { transform: translateX(70%) scale(0.85); }
        }

        @media (max-width: 768px) {
            html { font-size: 14px; }
            .container { padding: 0 20px; }
            .hero { padding: 120px 0 100px; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), 70% calc(100% - 30px), 70% 100%, 30% 100%, 30% calc(100% - 30px), 0 calc(100% - 30px)); max-width: 100%; overflow: hidden; }
            .hero-logo { height: 60px; }
            .hero-text h1 { font-size: 2.8rem; }
            .section { padding: 80px 0; }
            .benefits { padding: 100px 0; clip-path: polygon(0 30px, 20% 30px, 20% 0, 80% 0, 80% 30px, 100% 30px, 100% calc(100% - 30px), 80% calc(100% - 30px), 80% 100%, 20% 100%, 20% calc(100% - 30px), 0 calc(100% - 30px)); max-width: 100%; }
            .cta-final { padding: 100px 0 80px; clip-path: polygon(0 0, 30% 0, 30% 30px, 70% 30px, 70% 0, 100% 0, 100% 100%, 0 100%); max-width: 100%; }
            
            .section-header h2, .benefits-text h2, .contact-text h2 { font-size: 2.2rem; }
            .contact-form-card { padding: 30px; }
            .form-row { grid-template-columns: 1fr; gap: 0; }
            .form-row .form-group { margin-bottom: 20px; }
            
            .cross-1 { width: 180px; height: 180px; top: -30px; left: -20px; }
            .glow-1 { width: 150px; height: 150px; left: -10px; }
            .cross-2 { width: 100px; height: 100px; bottom: 0; right: -10px; }
            .glow-2 { width: 80px; height: 80px; right: -5px; }
            
            .fab-container { bottom: 15px; right: 15px; padding: 0; }
            .fab-btn { width: 50px; height: 50px; font-size: 24px; }
            .fab-whatsapp { width: 50px; padding: 0 11px; }
            .whatsapp-text { display: none; }
            .fab-container:hover .fab-whatsapp { width: 50px; padding: 0 11px; }
            
            .testimonials-carousel-container { height: 380px; }
            .carousel-item { width: 100%; max-width: 320px; }
            .carousel-item.prev, .carousel-item.next { opacity: 0; pointer-events: none; }
            .map-container iframe { height: 300px; }
            footer .container { flex-direction: column; justify-content: center; text-align: center; }
        }

        @media (max-width: 480px) {
            .hero { padding: 100px 0 80px; }
            .hero-text h1 { font-size: 2.2rem; }
            .section-header h2, .benefits-text h2, .contact-text h2 { font-size: 1.8rem; }
            .btn { padding: 14px 24px; font-size: 1rem; width: 100%; justify-content: center; }
            .service-card-elegant { padding: 30px 20px; }
            .card-icon-wrapper { width: 50px; height: 50px; font-size: 24px; }
            .finance-card { padding: 20px; }
            .contact-form-card { padding: 20px; }
            .carousel-item { max-width: 280px; }
            .benefits-text h2 { font-size: 2rem; }
            .benefit-list li { font-size: 1rem; }
        }

/* ===== Ajustes da versão Glosas ===== */
.services-wrapper-four { grid-template-columns: repeat(2, 1fr); }

.diagnosis-intro { color: rgba(255,255,255,.7); font-size: .94rem; line-height: 1.55; margin-bottom: 20px; }
.diagnosis-questions { display: flex; flex-direction: column; gap: 12px; }
.diagnosis-question { display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 12px; padding: 13px 14px; border-radius: 10px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.08); }
.diagnosis-question i { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 9px; background: rgba(2,132,199,.18); color: #38BDF8; font-size: 1.15rem; }
.diagnosis-question span { color: rgba(255,255,255,.9); font-size: .94rem; font-weight: 600; line-height: 1.35; }

.pain-icon { width: 66px; height: 66px; border-radius: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; background: var(--primary-color-light); border: 1px solid rgba(2,132,199,.2); color: var(--primary-color); font-size: 1.9rem; box-shadow: 0 10px 24px rgba(2,132,199,.08); }
.testimonial-quote { font-style: normal; }
.client-profile { margin-bottom: 12px; }

.team-card { max-width: 1050px; margin: 0 auto; display: grid; grid-template-columns: 180px 1fr; align-items: center; gap: 45px; background: #fff; border: 1px solid var(--border-color); border-radius: 24px; padding: 55px; box-shadow: 0 20px 50px rgba(15,23,42,.06); opacity: 0; }
.team-card-icon { width: 150px; height: 150px; border-radius: 32px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(2,132,199,.12), rgba(56,189,248,.18)); color: var(--primary-color); font-size: 4.3rem; border: 1px solid rgba(2,132,199,.12); }
.team-card-content h2 { font-size: 2.35rem; margin-bottom: 18px; }
.team-card-content > p { font-size: 1.08rem; color: var(--text-main); margin-bottom: 22px; line-height: 1.7; }
.team-note { display: flex; align-items: flex-start; gap: 10px; padding: 16px 18px; border-radius: 12px; background: var(--primary-color-light); color: var(--medium-gray); font-weight: 600; }
.team-note i { color: var(--primary-color); font-size: 1.35rem; margin-top: 1px; }

.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.recaptcha-wrap { display: flex; justify-content: center; }

.address-list { display: flex; flex-direction: column; gap: 15px; margin-top: 6px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); }
.address-item { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,.82); }
.address-item > i { color: #fff; font-size: 1.35rem; margin-top: 2px; }
.address-item strong { display: block; color: #fff; margin-bottom: 2px; font-size: .98rem; }
.address-item span { display: block; font-size: .88rem; line-height: 1.45; color: rgba(255,255,255,.72); }

.locations-wrapper { margin-top: 60px; }
.locations-title { color: #fff; text-align: center; font-size: 1.9rem; margin-bottom: 24px; }
.map-tabs { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.map-tab-btn { border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: #fff; padding: 12px 22px; border-radius: 9px; font-family: var(--font-family); font-size: .95rem; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: var(--transition); }
.map-tab-btn:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.map-tab-btn.active { background: #fff; color: var(--primary-color); border-color: #fff; box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.map-container-tabs { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,.3); border: 4px solid rgba(255,255,255,.12); background: var(--dark-gray); }
.map-content { display: none; animation: fadeIn .45s ease-out; }
.map-content.active { display: block; }
.map-info-bar { background: rgba(15,23,42,.92); padding: 14px 20px; text-align: center; border-bottom: 1px solid rgba(255,255,255,.08); }
.map-info-bar p { color: rgba(255,255,255,.9); margin: 0; font-size: .95rem; }
.map-content iframe { display: block; width: 100%; height: 350px; border: none; }

.modal-overlay { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(15,23,42,.72); backdrop-filter: blur(8px); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content { width: min(430px, 100%); background: #fff; border-radius: 18px; padding: 36px; text-align: center; box-shadow: 0 28px 70px rgba(0,0,0,.28); transform: translateY(12px) scale(.98); transition: transform .25s ease; }
.modal-overlay.active .modal-content { transform: translateY(0) scale(1); }
.modal-content h3 { font-size: 1.55rem; margin: 10px 0 8px; }
.modal-content p { margin-bottom: 24px; color: var(--text-main); }
.modal-icon { font-size: 3.1rem; line-height: 1; color: var(--primary-color); }
.modal-icon.success { color: #16a34a; }
.modal-icon.error { color: #dc2626; }

@media (max-width: 1024px) {
    .services-wrapper-four { grid-template-columns: 1fr; }
    .team-card { grid-template-columns: 1fr; text-align: center; gap: 25px; padding: 42px; }
    .team-card-icon { margin: 0 auto; }
    .team-note { text-align: left; }
}

@media (max-width: 768px) {
    .team-card { padding: 30px 24px; }
    .team-card-icon { width: 110px; height: 110px; border-radius: 24px; font-size: 3.2rem; }
    .team-card-content h2 { font-size: 2rem; }
    .map-tab-btn { width: 100%; justify-content: center; }
    .map-content iframe { height: 280px; }
}

@media (max-width: 480px) {
    .diagnosis-question { grid-template-columns: 32px 1fr; padding: 12px; }
    .team-card-content h2 { font-size: 1.7rem; }
    .modal-content { padding: 28px 22px; }
}
