/* ========================================
   Reset e Configurações Base
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    overflow-x: hidden;
}
.footer-admin-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    color: rgba(255,255,255,.35);
    text-decoration: none;
    margin-top: 10px;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 20px;
    background: rgba(255,255,255,.05);
    transition: all .25s ease;
    letter-spacing: .03em;
    font-weight: 500;
}
.footer-admin-link:hover {
    color: rgba(255,255,255,.85);
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.35);
    transform: translateY(-1px);
}
.footer-admin-link svg {
    opacity: .7;
}
.footer-admin-link:hover svg {
    opacity: 1;
}

:root {
    --primary: #0052FF;
    --primary-dark: #0041CC;
    --secondary: #00E5A0;
    --secondary-dark: #00CC8E;
    --accent: #FF3D71;
    --text-dark: #1a1a2e;
    --text-gray: #6B7280;
    --text-light: #ffffff;
    --bg-light: #F9FAFB;
    --bg-white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Top Bar - ORIGINAL
   ======================================== */
.top-bar {
    background: linear-gradient(135deg, #00E5A0 0%, #00CC8E 100%);
    color: var(--text-light);
    padding: 16px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 229, 160, 0.25);
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.btn-whatsapp,
.btn-area-cliente {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-whatsapp {
    background: #ffffff;
    color: #25D366;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
    border-radius: 18px;
    border: 2px solid #ffffff;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    background: #f0fdf4;
    border-color: #ffffff;
    color: #20BA5A;
}

.btn-area-cliente {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 18px;
    transition: all var(--transition);
}

.btn-area-cliente:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ========================================
  /* ========================================
   Header - Versão Otimizada
   ======================================== */
.header {
    background: var(--bg-white);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    height: 70px;
    width: auto;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(0, 82, 255, 0.06);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(0, 82, 255, 0.1);
}

.btn-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    box-shadow: 0 3px 12px rgba(0, 229, 160, 0.25);
    flex-shrink: 0;
}

.btn-cta svg {
    width: 14px;
    height: 14px;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(0, 229, 160, 0.35);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* Responsividade */
@media (max-width: 1024px) {
    .nav-link {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .btn-cta {
        padding: 9px 18px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 79px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 12px 20px;
        font-size: 15px;
        width: 100%;
    }
    
    .btn-cta {
        display: none;
    }
    
    .logo {
        height: 45px;
    }
}
/* ========================================
   Hero Section com SLIDER
   ======================================== */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 35px 35px;
    /* padding: 80px 0 120px; */
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0052FF 0%, #0041CC 30%, #00E5A0 100%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(135deg, #0052FF 0%, #0041CC 30%, #00E5A0 100%);
    }
    50% {
        background: linear-gradient(135deg, #002E99 0%, #0052FF 30%, #00CC8E 100%);
    }
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 229, 160, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 82, 255, 0.1) 0%, transparent 70%);
    animation: patternFloat 20s ease infinite;
}

@keyframes patternFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(10px, -10px) scale(1.05);
    }
}

/* SLIDER WRAPPER - CORRIGIDO */
.slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slide-item {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide-item.active {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    opacity: 1;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 0.8s ease;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    animation: badgePulse 3s ease infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
}

.hero-title {
    font-size: 36px;
    line-height: 1.2;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.highlight {
    background: linear-gradient(135deg, var(--secondary) 0%, #00FFB8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 10px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--text-light);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature-pill:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: var(--text-light);
    padding: 16px 32px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.45);
    background: linear-gradient(135deg, #FF5722 0%, #FF6B35 100%);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 16px 32px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

/* ========================================
   Hero Image
   ======================================== */
/* .hero-image {
    position: relative;
    animation: fadeInRight 0.8s ease;
} */

.img1{
    width: 100%;
    height: auto;
    max-width: 500px;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
}

/* .image-wrapper {
    position: relative;
    z-index: 2;
    animation: floatImage 6s ease-in-out infinite;
} */

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.family-img {
    width: 100%;
    height: auto;
    max-width: 450px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
    border-radius: 20px;
    transition: var(--transition);
}

.family-img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 25px 70px rgba(0, 0, 0, 0.4));
}

.image-decoration {
    position: absolute;
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, rgba(0, 229, 160, 0.35) 0%, rgba(0, 204, 142, 0.25) 100%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    filter: blur(80px);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.1);
    }
}
.clinic-dropdown-search {
    padding: 10px 12px;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
    border-radius: 8px 8px 0 0;
}

.clinic-dropdown-search-input {
    width: 100%;
    padding: 10px 14px 10px 36px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    color: #333;
    background: #f9fafb url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") no-repeat 10px center;
    transition: border-color 0.2s, background-color 0.2s;
    font-family: inherit;
}

.clinic-dropdown-search-input:focus {
    border-color: #0052FF;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230052FF' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E");
    box-shadow: 0 0 0 3px rgba(0, 82, 255, 0.08);
}

.clinic-dropdown-search-input::placeholder {
    color: #aaa;
    font-size: 13px;
}

.clinic-dropdown-options {
    max-height: 260px;
    overflow-y: auto;
}

.clinic-dropdown-options::-webkit-scrollbar {
    width: 6px;
}

.clinic-dropdown-options::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.clinic-dropdown-options::-webkit-scrollbar-thumb {
    background: #c5cfe8;
    border-radius: 3px;
}

.clinic-dropdown-options::-webkit-scrollbar-thumb:hover {
    background: #0052FF;
}
/* ========================================
   Slider Controls
   ======================================== */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 35px;
    position: relative;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(20px);
    color: var(--text-light);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dot::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dot.active {
    background: var(--text-light);
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}

/* ========================================
   WhatsApp Float Button
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--text-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: float-whatsapp 3s ease-in-out infinite;
}

@keyframes float-whatsapp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
    animation: none;
}

/* ========================================
   Animações
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   Responsividade
   ======================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 32px;
    }
    
    .slide-item.active {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    /* Top Bar Mobile */
    .top-bar {
        padding: 14px 0;
    }

    .top-bar-content {
        flex-direction: row;
        gap: 12px;
        justify-content: space-between;
    }
    
    .btn-whatsapp,
    .btn-area-cliente {
        flex: 1;
        justify-content: center;
        font-size: 12px;
        padding: 10px 16px;
        white-space: nowrap;
    }
    
    .btn-whatsapp span,
    .btn-area-cliente span {
        display: none;
    }
    
    .btn-whatsapp svg,
    .btn-area-cliente svg {
        margin: 0;
    }
    
    /* Header Mobile */
    .nav-menu {
        position: fixed;
        top: 90px;
        left: 24px;
        right: 24px;
        background: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        border-radius: 16px;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-link {
        padding: 14px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 0;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .btn-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    /* Hero Mobile */
    .hero {
        padding: 60px 0 80px;
        min-height: auto;
    }

    .slider-wrapper {
        width: 100%;
    }
    
    .slide-item.active {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .badge,
    .hero-features,
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 15px 28px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .family-img {
        max-width: 100%;
    }
    
    .image-decoration {
        width: 300px;
        height: 300px;
    }
    
    .slider-controls {
        margin-top: 40px;
        gap: 16px;
    }
    
    .slider-btn {
        width: 42px;
        height: 42px;
    }
    
    .slider-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: 24px;
        right: 24px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .top-bar {
        padding: 12px 0;
    }
    
    .btn-whatsapp,
    .btn-area-cliente {
        font-size: 11px;
        padding: 9px 12px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        font-size: 15px;
        padding: 14px 24px;
    }
    
    .feature-pill {
        font-size: 13px;
        padding: 8px 14px;
    }
    
    .logo {
        height: 65px;
    }
}


/* ========================================
   PRELOADER STYLES - VERSÃO LIMPA
   ======================================== */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0052FF 0%, #0041CC 50%, #002E99 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
}

/* ========================================
   LOGO E ANIMAÇÕES
   ======================================== */
.preloader-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    animation: floatAnimation 3s ease-in-out infinite;
}

.preloader-logo svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 5px 15px rgba(0, 229, 160, 0.3));
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Anéis de pulso */
.pulse-ring {
    fill: none;
    stroke: rgba(0, 229, 160, 0.5);
    stroke-width: 2;
    animation: pulseRing 2s ease-out infinite;
}

.pulse-ring-2 {
    animation-delay: 1s;
}

@keyframes pulseRing {
    0% {
        r: 30;
        opacity: 1;
    }
    100% {
        r: 45;
        opacity: 0;
    }
}

/* Cruz animada */
.health-cross {
    animation: heartbeat 1.5s ease-in-out infinite;
    transform-origin: center;
    transform-box: fill-box;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    15%, 35% {
        transform: scale(1.1);
    }
    25%, 45% {
        transform: scale(1);
    }
}

/* ========================================
   TEXTOS
   ======================================== */
.loading-title {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
}

.loading-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 25px 0;
}

/* ========================================
   DOTS ANIMADOS
   ======================================== */
.loading-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.loading-dots span {
    width: 10px;
    height: 10px;
    background: #00E5A0;
    border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(0, 229, 160, 0.5);
}

.loading-dots span:nth-child(1) {
    animation-delay: 0s;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotBounce {
    0%, 80%, 100% {
        transform: scale(0.7);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.3);
        opacity: 1;
    }
}

/* ========================================
   BARRA DE PROGRESSO
   ======================================== */
.progress-bar-container {
    width: 250px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #00E5A0 0%, #00FFB8 100%);
    border-radius: 10px;
    animation: progressLoad 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 229, 160, 0.6);
}

@keyframes progressLoad {
    0% {
        width: 0%;
        margin-left: 0%;
    }
    50% {
        width: 70%;
        margin-left: 0%;
    }
    100% {
        width: 0%;
        margin-left: 100%;
    }
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */
@media (max-width: 768px) {
    .preloader-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }
    
    .loading-title {
        font-size: 22px;
    }
    
    .loading-subtitle {
        font-size: 14px;
    }
    
    .loading-dots {
        margin-bottom: 25px;
    }
    
    .loading-dots span {
        width: 8px;
        height: 8px;
    }
    
    .progress-bar-container {
        width: 200px;
    }
}


/*planos empresarial e pessoal*/
/* Seção Principal */
.planos-saude-section {
    padding: 80px 20px;
    background: #ffffff;
}

.planos-saude-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Cabeçalho da Seção */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    position: relative;
    display: inline-block;
}

.section-title::after {
       content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 3px;
    margin-top: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: #2d2d2d;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Grid dos Cards */
.planos-saude-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Card do Plano */
.plano-saude-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.plano-saude-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* Cartão (Imagem) */
.plano-saude-cartao {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.plano-saude-cartao-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Conteúdo do Card */
.plano-saude-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Badge do Tipo de Plano */
.plano-badge {
    display: inline-block;
    padding: 6px 14px;
    background: #0066ff;
    color: white;
    border-radius: 18px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: fit-content;
}

.plano-saude-titulo {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.plano-saude-descricao {
    color: #6c757d;
    font-size: 14px;
    margin: 0 0 20px 0;
    line-height: 1.6;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Lista de Benefícios */
.plano-saude-beneficios {
    list-style: none;
    margin: 0 0 auto 0;
    padding: 0;
}

.plano-saude-beneficios li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    color: #495057;
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.plano-saude-beneficios li:last-child {
    margin-bottom: 0;
}

.plano-saude-check {
    width: 18px;
    height: 18px;
    color: #28a745;
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Preço */
.plano-saude-preco {
    margin: 25px 0 20px 0;
    padding: 0;
}

.plano-saude-preco-valor {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 5px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.plano-saude-preco-obs {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Info Empresa */
.plano-saude-info-empresa {
    margin: 25px 0 20px 0;
    padding: 15px;
    background: #fff3cd;
    border-radius: 18px;
    border-left: 3px solid #ffc107;
}

.plano-saude-info-empresa p {
    font-size: 13px;
    color: #856404;
    line-height: 1.5;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Botão */
.plano-saude-btn {
    width: 100%;
    padding: 14px;
    background: #0066ff;
    color: white;
    border: none;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: auto;
}

.plano-saude-btn:hover {
    background: #0052cc;
}

.plano-saude-btn:active {
    transform: scale(0.98);
}

/* Responsivo - Tablets */
@media (max-width: 900px) {
    .planos-saude-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .planos-saude-section {
        padding: 60px 20px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 30px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .plano-saude-content {
        padding: 25px;
    }
    
    .plano-saude-titulo {
        font-size: 22px;
    }
    
    .plano-saude-preco-valor {
        font-size: 28px;
    }
}

/* Responsivo - Mobile */
@media (max-width: 480px) {
    .planos-saude-section {
        padding: 50px 15px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .plano-saude-content {
        padding: 20px;
    }
    
    .plano-saude-titulo {
        font-size: 20px;
    }

    .plano-saude-descricao {
        font-size: 13px;
    }

    .plano-saude-beneficios li {
        font-size: 13px;
    }

    .plano-saude-preco-valor {
        font-size: 26px;
    }
    
    .plano-saude-btn {
        padding: 13px;
        font-size: 14px;
    }
}


/*Consultas e Exames*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.services-section {
    background-image: url('https://images.unsplash.com/photo-1631217868264-e5b90bb7e133?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.93) 0%, rgba(25, 70, 130, 0.88) 30%, rgba(32, 78, 138, 0.90) 70%, rgba(15, 52, 96, 0.93) 100%);
    z-index: 1;
    box-shadow: inset 0 0 200px rgba(0, 0, 0, 0.3);
}

.overlay::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
    pointer-events: none;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.services-section h2 {
    text-align: center;
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 60px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), 0 0 20px rgba(74, 222, 128, 0.3);
    animation: fadeInDown 0.8s ease;
    font-weight: 700;
    letter-spacing: 1px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    font-size: 1.15rem;
    padding: 18px 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    position: relative;
    overflow: hidden;
    font-weight: 500;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }
.service-item:nth-child(6) { animation-delay: 0.6s; }
.service-item:nth-child(7) { animation-delay: 0.7s; }
.service-item:nth-child(8) { animation-delay: 0.8s; }
.service-item:nth-child(9) { animation-delay: 0.9s; }
.service-item:nth-child(10) { animation-delay: 1s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    transform: translateX(15px) translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(74, 222, 128, 0.3);
    border-color: rgba(74, 222, 128, 0.6);
}

.service-item::before {
    content: '●';
    color: #4ade80;
    font-size: 1.5rem;
    text-shadow: 0 0 15px #4ade80, 0 0 30px #4ade80;
    animation: pulse 2s ease infinite;
    filter: drop-shadow(0 0 8px #4ade80);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.footer-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-top: 40px;
    font-style: italic;
    animation: fadeIn 1.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
    filter: blur(2px);
    box-shadow: 0 0 50px rgba(74, 222, 128, 0.2);
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 3s;
}

.shape:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 15%;
    left: 20%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 40px 25px;
    }

    .services-section h2 {
        font-size: 2rem;
        margin-bottom: 35px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-item {
        font-size: 1rem;
    }
}




/* telemedicina */

/* CSS DA SEÇÃO DE TELEMEDICINA */

.telemedicine-section {
    background: 
        linear-gradient(135deg, rgba(30, 60, 114, 0.95) 0%, rgba(42, 82, 152, 0.95) 100%),
        url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1920&q=80') center/cover no-repeat;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.telemedicine-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.telemedicine-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.telemedicine-content {
    color: #ffffff;
}

.telemedicine-title {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.2;
}

.telemedicine-text {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 35px;
}

.telemedicine-text strong {
    color: #ffffff;
    font-weight: 700;
}

.telemedicine-text em {
    font-style: italic;
    color: #ffffff;
}

.telemedicine-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0052ff 0%, #0041cc 100%);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 82, 255, 0.25);
    border: none;
    cursor: pointer;
}

.telemedicine-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 82, 255, 0.35);
    background: linear-gradient(135deg, #0041cc 0%, #0052ff 100%);
}

.telemedicine-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.telemedicine-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.telemedicine-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
    .telemedicine-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .telemedicine-title {
        font-size: 38px;
    }

    .telemedicine-text {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .telemedicine-section {
        padding: 60px 20px;
    }

    .telemedicine-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .telemedicine-text {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .telemedicine-button {
        width: 100%;
        padding: 16px 32px;
    }

    .telemedicine-image img {
        max-width: 100%;
    }
}


/* parceiros */

/* CSS DA SEÇÃO DE PARCEIROS */

/* CSS DA SEÇÃO DE PARCEIROS */

.partners-section {
    padding: 80px 20px;
    background: #ffffff;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.partners-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    position: relative;
    display: inline-block;
}

.partners-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 3px;
    margin-top: 16px;
}

.partners-subtitle {
    font-size: 18px;
    color: #2d2d2d;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.6;
}

.partners-description {
    font-size: 16px;
    color: #6b6b6b;
    margin-bottom: 50px;
    line-height: 1.6;
}

.partners-slider {
    overflow: hidden;
    padding: 30px 0;
    position: relative;
}

.partners-track {
    display: flex;
    gap: 20px;
    animation: scroll 90s linear infinite;
    width: fit-content;
}

.partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.partner-logo img {
    max-width: 180px;
    height: auto;
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.3s ease;
}

.partner-logo img:hover {
    filter: grayscale(100%);
    opacity: 0.7;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partners-slider:hover .partners-track {
    animation-play-state: paused;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .partners-section {
        padding: 60px 20px;
    }

    .partners-title {
        font-size: 36px;
    }

    .partners-subtitle {
        font-size: 16px;
    }

    .partners-description {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .partners-track {
        gap: 50px;
    }

    .partner-logo {
        min-width: 150px;
    }

    .partner-logo img {
        max-width: 140px;
    }
}

/* rodape */
/* Footer Principal */
.footer {
    background: linear-gradient(180deg, #2c4875 0%, #1a2d4d 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Efeito de Ondas no Topo */
.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.footer-wave .shape-fill {
    fill: #f8f9fa;
}

/* Container Principal */
.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 20px 60px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

/* Colunas */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Logo e Descrição */
.footer-brand {
    gap: 25px;
}

.footer-logo .logo-img {
    height: 70px;
    width: auto;
    filter: brightness(1.2) drop-shadow(0 4px 10px rgba(255, 255, 255, 0.3));
}

.footer-description {
    color: #e8f0ff;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Redes Sociais */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.social-icon:hover::before {
    background: rgba(255, 255, 255, 0.2);
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0c5dbf 100%);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.3);
}

.social-icon.instagram {
    background: linear-gradient(135deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.3);
}

.social-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

/* Título das Seções */
.footer-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ffffff 0%, #e8f0ff 100%);
    border-radius: 2px;
}

/* Contato */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ffffff 0%, #e8f0ff 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.contact-icon svg {
    color: #2c4875;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 12px;
    color: #c8d9f0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 15px;
    color: #ffffff;
    font-weight: 600;
}

/* CTA WhatsApp */
.whatsapp-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    margin-top: 10px;
}

.whatsapp-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
}

/* Endereço */
.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #b0b8c9;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-address svg {
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0.8;
}

/* Mapa */
.footer-map {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid red; /* TEMPORÁRIO - pra testar */
    transition: all 0.3s ease;
}

.footer-map:hover {
    box-shadow: 0 15px 50px rgba(0, 168, 255, 0.3);
    border-color: rgba(0, 168, 255, 0.4);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Disclaimer */
.footer-disclaimer {
    background: rgba(0, 0, 0, 0.3);
    padding: 35px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.disclaimer-content {
    max-width: 1300px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 12px;
    line-height: 1.9;
    color: #8a93a6;
    text-align: justify;
    margin: 0;
}

.disclaimer-text a {
    color: #00a8ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.disclaimer-text a:hover {
    color: #0052ff;
    text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    color: #b0b8c9;
    margin-bottom: 8px;
    font-weight: 500;
}

.footer-cnpj {
    font-size: 12px;
    color: #6b7280;
    font-weight: 400;
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0052ff 0%, #00a8ff 100%);
    color: white;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(0, 82, 255, 0.5);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 35px rgba(0, 168, 255, 0.7);
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 80px 20px 50px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-wave svg {
        height: 60px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 70px 20px 40px;
    }

    .footer-wave svg {
        height: 50px;
    }

    .footer-logo .logo-img {
        height: 55px;
    }

    .footer-title {
        font-size: 20px;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .social-icon {
        width: 44px;
        height: 44px;
    }

    .contact-item {
        padding: 12px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .whatsapp-cta {
        font-size: 14px;
        padding: 14px 20px;
    }

    .footer-map {
        height: 200px;
    }

    .disclaimer-text {
        font-size: 11px;
        text-align: left;
    }

    .footer-bottom {
        padding: 25px 20px;
    }

    .footer-copyright {
        font-size: 13px;
    }

    .footer-cnpj {
        font-size: 11px;
    }

    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 60px 15px 30px;
        gap: 30px;
    }

    .footer-wave svg {
        height: 40px;
    }

    .footer-logo .logo-img {
        height: 50px;
    }

    .footer-description {
        font-size: 14px;
    }

    .footer-title {
        font-size: 18px;
        padding-bottom: 12px;
    }

    .social-icon {
        width: 42px;
        height: 42px;
    }

    .contact-item {
        padding: 10px;
        gap: 12px;
    }

    .contact-icon {
        width: 38px;
        height: 38px;
    }

    .contact-value {
        font-size: 14px;
    }

    .whatsapp-cta {
        font-size: 13px;
        padding: 12px 18px;
    }

    .footer-address {
        font-size: 13px;
        padding: 12px;
    }

    .footer-map {
        height: 180px;
        border-radius: 12px;
    }

    .footer-disclaimer {
        padding: 25px 15px;
    }

    .disclaimer-text {
        font-size: 10px;
        line-height: 1.7;
    }

    .back-to-top {
        width: 48px;
        height: 48px;
        bottom: 15px;
        left: 15px;
    }
}




/* procurou achou */

  .clinic-search-body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f5f7fa;
            min-height: 100vh;
            color: #2d3748;
            padding: 2rem 1rem;
        }

        .clinic-search-container {
            max-width: 1200px;
            margin: 0 auto;
            
        }
        .clinic-search-wrapper{
    position: relative;
    background: linear-gradient(rgb(245, 247, 250) 0%, rgb(255, 255, 255) 100%);
    overflow: visible; /* ← MUDE DE: hidden PARA: visible */
    margin-top: -40px;
}


        .clinic-search-section {
            /* background: white; */
            border-radius: 12px;
            padding: 2rem;
            /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); */
            margin-bottom: 2rem;
        }

        /* FORMULÁRIO DE BUSCA - Desktop primeiro */
        .clinic-search-form {
            display: grid;
            grid-template-columns: 1fr 1fr auto;
            gap: 1.5rem;
            align-items: end;
        }

        .clinic-form-group {
            display: flex;
            flex-direction: column;
        }

        .clinic-form-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: #4a5568;
            margin-bottom: 0.5rem;
        }

        .clinic-custom-select {
            position: relative;
        }

        .clinic-select-field {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid #e2e8f0;
            border-radius: 18px;
            font-size: 1rem;
            background: white;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 48px;
        }

        .clinic-select-field:hover {
            border-color: #cbd5e0;
        }

        .clinic-select-field.active {
            border-color: #3182ce;
            box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
        }

        .clinic-select-text {
            color: #2d3748;
        }

        .clinic-select-text.placeholder {
            color: #a0aec0;
        }

        .clinic-select-arrow {
            color: #718096;
            font-size: 0.8rem;
            transition: transform 0.2s ease;
        }

        .clinic-select-field.active .clinic-select-arrow {
            transform: rotate(180deg);
        }

        .clinic-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 2px solid #3182ce;
            border-top: none;
            border-radius: 0 0 8px 8px;
            max-height: 250px;
            overflow-y: auto;
            z-index: 1000;
            display: none;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .clinic-dropdown.show {
            display: block;
        }

        .clinic-dropdown-option {
            padding: 0.75rem 1rem;
            cursor: pointer;
            transition: background 0.2s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            border-bottom: 1px solid #f7fafc;
        }

        .clinic-dropdown-option:hover {
            background: #f7fafc;
        }

        .clinic-dropdown-option:last-child {
            border-bottom: none;
        }

        .clinic-option-icon {
            font-size: 1rem;
        }

        .clinic-search-button {
            padding: 0.75rem 2rem;
            background: #3182ce;
            color: white;
            border: none;
            border-radius: 18px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            height: 48px;
            white-space: nowrap;
            margin-bottom: 1px;
        }

        .clinic-search-button:hover:not(:disabled) {
            background: #2c5282;
        }

        .clinic-search-button:disabled {
            background: #cbd5e0;
            cursor: not-allowed;
        }

        /* RESULTADOS */
        .clinic-results {
            display: none;
        }

        .clinic-results.show {
            display: block;
        }

        .clinic-results-header {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .clinic-results-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 0.5rem;
        }

        .clinic-results-subtitle {
            color: #718096;
        }

        .clinic-back-button {
            background: #e2e8f0;
            color: #4a5568;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            margin-bottom: 1rem;
            transition: background 0.2s ease;
        }

        .clinic-back-button:hover {
            background: #cbd5e0;
        }

        /* CARDS - Mantendo layout original do desktop */
        .clinic-service-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .clinic-service-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        .clinic-service-header {
            display: grid;
            margin-top: 10px;
            grid-template-columns: 1fr auto;
            gap: 1.5rem;
            padding: 1.5rem;
            border-bottom: 1px solid #f1f5f9;
        }

        /* Seção de Informações da Clínica */
        .clinic-service-info {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 1.5rem;
            align-items: start;
        }

        .clinic-info-left h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 0.5rem;
        }

        .clinic-service-description {
            color: #64748b;
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .clinic-service-description::before {
            content: "📍";
            font-size: 1rem;
        }

        .clinic-service-rating {
            color: #f59e0b;
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .clinic-logo {
            margin-bottom: 10px;
        }

        .clinic-logo-img {
            max-width: 240px;
            /* aumentei a largura */
            max-height: 120px;
            /* aumentei a altura */
            object-fit: contain;
            margin-top: 20px;
        }


        /* Detalhes da Clínica */
        .clinic-service-details {
            display: grid;
            /*grid-template-columns: repeat(3, 1fr);*/
            gap: 1rem;
            margin-top: 1rem;
        }

        .clinic-detail-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem;
            background: #f8fafc;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            font-size: 0.9rem;
            color: #475569;
        }

        .clinic-detail-item span:first-child {
            font-size: 1.1rem;
        }

        /* Preview do Mapa - Integrado como na Imagem */
        .clinic-map-preview {
            position: relative;
            width: 300px;
            height: 200px;
            border-radius: 8px;
            overflow: hidden;
            border: 2px solid #e5e7eb;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .clinic-map-embed {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .clinic-map-embed iframe {
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 6px;
        }

        .clinic-map-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            padding: 1rem;
            display: flex;
            justify-content: center;
        }

        .clinic-view-map-btn {
            background: rgba(255, 255, 255, 0.95);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #374151;
            cursor: pointer;
            transition: all 0.2s ease;
            backdrop-filter: blur(10px);
        }

        .clinic-view-map-btn:hover {
            background: white;
            transform: translateY(-1px);
        }

        /* Seção de Preços */
        .clinic-service-price {
            min-width: 300px;
        }

        .clinic-price-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .clinic-price-item {
            padding: 1.2rem;
            border-radius: 12px;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            transition: all 0.2s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .clinic-price-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .clinic-price-item.particular {
            background: #f9fafb;
            border: 1px solid #d1d5db;
        }

        .clinic-price-item.pix {
            background: #f0f9ff;
            border: 1px solid #bae6fd;
        }

        .clinic-price-content {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .clinic-price-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: #374151;
            margin-bottom: 0.5rem;
        }

        .clinic-price-item.cartao360 .clinic-price-label {
            color: #1e40af;
            font-weight: 700;
        }

        .clinic-price-item.pix .clinic-price-label {
            color: #0369a1;
        }

        .clinic-price-details {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .clinic-price-from {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            color: #6b7280;
        }

        .clinic-price-from-value {
            text-decoration: line-through;
            color: #9ca3af;
            font-weight: 500;
        }

        .clinic-price-to {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.5rem;
        }

        .clinic-price-to-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: #1f2937;
        }

        .clinic-price-value {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1f2937;
        }

        .clinic-price-item.cartao360 .clinic-price-value {
            background: #16a34a;
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 700;
            box-shadow: 0 2px 4px rgba(22, 163, 74, 0.3);
            animation: pulseGreen 3.5s infinite;
        }

        @keyframes pulseGreen {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        .clinic-price-discount {
            background: #dcfce7;
            color: #166534;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
        }

        .clinic-price-item.cartao360 .clinic-price-discount {
            background: #fee2e2;
            color: #dc2626;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.8;
                transform: scale(1.02);
            }
        }

        /* Ações do Card */
        .clinic-actions {
            padding: 1.5rem;
            background: #f8fafc;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 1rem;
        }

        .clinic-book-button {
            padding: 1rem 1.5rem;
            background: #16a34a;
            color: white;
            border: none;
            border-radius: 18px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .clinic-book-button:hover {
            background: #15803d;
            transform: translateY(-1px);
        }

        .clinic-directions-button {
            padding: 1rem 1.5rem;
            background: #3b82f6;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .clinic-directions-button:hover {
            background: #2563eb;
            transform: translateY(-1px);
        }

        /* Badge Melhor Preço */
        .clinic-best-price {
            border: 2px solid #16a34a !important;
            position: relative;
        }

        .clinic-best-price-badge {
            position: absolute;
            top: 13px;
            left: 20px;
            background: #16a34a;
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            z-index: 10;
            transform-origin: top center;
            animation: swing 2s infinite ease-in-out;
        }

        @keyframes swing {
            0% {
                transform: rotate(0deg);
            }

            25% {
                transform: rotate(5deg);
            }

            50% {
                transform: rotate(0deg);
            }

            75% {
                transform: rotate(-5deg);
            }

            100% {
                transform: rotate(0deg);
            }
        }

        .clinic-best-price-badge::before {
            content: "";
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 10px;
            background: #16a34a;
        }

        /* MODAL DO MAPA */
        .clinic-map-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .clinic-map-modal-backdrop {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
        }

        .clinic-map-modal-content {
            position: relative;
            background: white;
            border-radius: 12px;
            max-width: 900px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            overflow-x: hidden;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            animation: fadeIn 0.3s ease;
        }

        .clinic-map-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            border-bottom: 1px solid #e5e7eb;
            background: #f9fafb;
        }

        .clinic-map-modal-header h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1f2937;

            padding: 1rem 1.5rem;
            border-bottom: 1px solid #e5e7eb;
            background: #f9fafb;
        }

        .clinic-map-modal-header h3 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1f2937;
        }

        .clinic-map-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #6b7280;
            padding: 0.5rem;
            border-radius: 6px;
            transition: all 0.2s ease;
        }

        .clinic-map-close:hover {
            background: #e5e7eb;
            color: #1f2937;
        }

        .clinic-map-modal-body {
            display: grid;
            grid-template-columns: 2fr 1fr;
            height: 500px;
        }

        .clinic-map-full {
            height: 100%;
        }

        .clinic-map-full iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .clinic-map-info {
            padding: 1.5rem;
            background: #f9fafb;
            border-left: 1px solid #e5e7eb;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .clinic-map-details {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .clinic-map-detail-item {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .clinic-map-detail-item strong {
            color: #374151;
            font-size: 0.9rem;
        }

        .clinic-map-detail-item span {
            color: #6b7280;
            font-size: 0.9rem;
        }

        .clinic-map-actions {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-top: auto;
        }

        .clinic-map-action-btn {
            padding: 0.75rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            text-align: center;
        }

        .clinic-map-action-btn.primary {
            background: #3b82f6;
            color: white;
        }

        .clinic-map-action-btn.primary:hover {
            background: #2563eb;
        }

        .clinic-map-action-btn.secondary {
            background: #e5e7eb;
            color: #374151;
        }

        .clinic-map-action-btn.secondary:hover {
            background: #d1d5db;
        }

        .clinic-alert {
            margin-top: 1rem;
            padding: 1rem;
            background: #fff8e1;
            border: 1px solid #facc15;
            border-left: 6px solid #facc15;
            border-radius: 8px;
            color: #854d0e;
            font-size: 0.9rem;
            line-height: 1.4;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
        }

        .clinic-alert p+p {
            margin-top: 0.5rem;
        }

        body.modal-open {
            overflow: hidden;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* MEDIA QUERIES PARA RESPONSIVIDADE - Somente mobile */

        @media (max-width: 768px) {
            .clinic-search-body {
                padding: 1rem;
            }

            .clinic-search-section {
                padding: 1.5rem;
            }

            .clinic-search-form {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .clinic-search-button {
                width: 100%;
            }

            .clinic-service-header {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .clinic-service-info {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .clinic-map-preview {
                width: 100%;
                height: 200px;
            }

            .clinic-service-price {
                min-width: auto;
            }

            .clinic-service-details {
                grid-template-columns: 1fr;
            }

            .clinic-actions {
                grid-template-columns: 1fr;
            }

            .clinic-book-button,
            .clinic-directions-button {
                width: 100%;
            }

            .clinic-map-modal {
                padding: 1rem;
            }

            .clinic-map-modal-content {
                max-height: 90vh;
            }

            .clinic-map-modal-body {
                grid-template-columns: 1fr;
                height: auto;
            }

            .clinic-map-full {
                height: 300px;
            }

            .clinic-map-info {
                border-left: none;
                border-top: 1px solid #e5e7eb;
            }
        }

        @media (max-width: 480px) {
            .clinic-search-body {
                padding: 0.5rem;
            }

            .clinic-search-section {
                padding: 1rem;
            }

            .clinic-service-header,
            .clinic-actions {
                padding: 1rem;
            }
        }


        


        /* parceiros */
        /* ===== SEÇÃO PARCEIROS DESCONTOS - LAYOUT NOVO ===== */

.pd-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #f8f9ff 0%, #f0f4ff 100%);
  position: relative;
  overflow: hidden;
}

.pd-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pd-header {
  text-align: center;
  margin-bottom: 50px;
  animation: pd-fadeInDown 0.8s ease;
}

.pd-header h2 {
  font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    position: relative;
    display: inline-block;
}

.pd-header p {
  font-size: 18px;
  color: #666;
  font-weight: 400;
}

/* Search */
.pd-search {
  position: relative;
  margin-bottom: 40px;
  animation: pd-fadeInUp 0.8s ease 0.1s both;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.pd-search-input {
  width: 100%;
  padding: 16px 50px 16px 50px;
  border: 2px solid #e5e7eb;
  border-radius: 50px;
  font-size: 15px;
  outline: none;
  background: white;
  color: #1a1a2e;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  font-family: inherit;
}

.pd-search-input::placeholder {
  color: #999;
}

.pd-search-input:focus {
  border-color: #5eb3e6;
  box-shadow: 0 8px 30px rgba(94, 179, 230, 0.2);
  transform: translateY(-2px);
}

.pd-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  color: #999;
  pointer-events: none;
}

/* Filters */
.pd-filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 45px;
  animation: pd-fadeInUp 0.8s ease 0.2s both;
  flex-wrap: wrap;
}

.pd-filter-btn {
  padding: 12px 24px;
  border: 2px solid #e5e7eb;
  background: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-family: inherit;
}

.pd-filter-emoji {
  font-size: 18px;
}

.pd-filter-btn:hover {
  border-color: #5eb3e6;
  color: #5eb3e6;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(94, 179, 230, 0.15);
}

.pd-filter-btn.pd-filter-active {
  background: #5eb3e6;
  color: white;
  border-color: #5eb3e6;
  box-shadow: 0 8px 25px rgba(94, 179, 230, 0.3);
  transform: scale(1.05);
}

/* Grid */
.pd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.pd-card {
  background: #f5f0ea;
  border-radius: 16px;
  padding: 20px 15px 15px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  animation: pd-slideInUp 0.6s ease both;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 380px;
}

@keyframes pd-slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pd-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: #5eb3e6;
}

/* Badge Loja Online */
.pd-badge {
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
}

.pd-badge-online {
  background: #1a1a1a;
  color: white;
}

.pd-badge-fisico {
  background: #ff6b6b;
  color: white;
}

.pd-badge-ambos {
  background: #5eb3e6;
  color: white;
}

/* Logo Container */
.pd-logo-wrapper {
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  flex-grow: 1;
}

.pd-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  border-radius: 12px;
}

/* Info */
.pd-name {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 15px;
}

/* Button */
.pd-btn {
  background: #0067b8;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 12px rgba(0, 103, 184, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  width: 100%;
  max-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  margin-top: auto;
}

.pd-btn:hover {
  background: #0052a3;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 103, 184, 0.4);
}

.pd-btn:active {
  transform: translateY(-1px);
}

/* Pagination */
.pd-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pd-page-btn {
  width: 40px;
  height: 40px;
  border: 2px solid #e5e7eb;
  background: white;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}

.pd-page-btn:hover {
  border-color: #5eb3e6;
  color: #5eb3e6;
  transform: scale(1.1);
}

.pd-page-btn.pd-page-active {
  background: #0067b8;
  color: white;
  border-color: #0067b8;
}

.pd-page-dots {
  color: #999;
  font-weight: bold;
}

/* Animations */
@keyframes pd-fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pd-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .pd-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .pd-header h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .pd-section {
    padding: 40px 15px;
  }

  .pd-header h2 {
    font-size: 32px;
  }

  .pd-header p {
    font-size: 16px;
  }

  .pd-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .pd-card {
    padding: 18px 12px;
    min-height: 340px;
  }

  .pd-logo-wrapper {
    width: 100px;
    height: 100px;
  }

  .pd-filters {
    gap: 8px;
  }

  .pd-filter-btn {
    padding: 10px 18px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .pd-section {
    padding: 30px 12px;
  }

  .pd-header h2 {
    font-size: 28px;
  }

  .pd-header p {
    font-size: 14px;
  }

  .pd-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .pd-card {
    padding: 16px 10px;
    min-height: 320px;
  }

  .pd-logo-wrapper {
    width: 85px;
    height: 85px;
  }

  .pd-btn {
    padding: 10px 16px;
    font-size: 11px;
    max-width: 160px;
  }

  .pd-page-btn {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
}