/* ============================================
   CTA WAVE SECTION - Estilo MedClin
   ============================================ */

.cta-wave-section {
    position: relative;
    padding: 120px 0 120px;
    background: var(--primary, #009b97);
    overflow: hidden;
}

/* Background e Overlay */
.cta-wave-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary, #009b97) 0%, #1f7a6e 100%);
    z-index: 0;
}

.cta-wave-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%23ffffff'%3E%3Cpath d='M20 35c3.3 0 6-3.4 6-7.5S23.3 20 20 20s-6 3.4-6 7.5S16.7 35 20 35zm15-10c3.3 0 6-3.4 6-7.5S38.3 10 35 10s-6 3.4-6 7.5S31.7 25 35 25zm30 0c3.3 0 6-3.4 6-7.5S68.3 10 65 10s-6 3.4-6 7.5S61.7 25 65 25zm15 10c3.3 0 6-3.4 6-7.5S83.3 20 80 20s-6 3.4-6 7.5S76.7 35 80 35zm-30 5c-8.3 0-15 8.1-15 18s6.7 18 15 18 15-8.1 15-18-6.7-18-15-18z'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    opacity: 0.05;
}

/* Onda Superior */
.cta-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.cta-wave-top svg {
    display: block;
    width: 100%;
    height: 100px;
}

/* Onda Inferior */
.cta-wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.cta-wave-bottom svg {
    display: block;
    width: 100%;
    height: 100px;
}

/* Conteúdo */
.cta-wave-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Ícone */
.cta-wave-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2rem;
    color: var(--white, #ffffff);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Título */
.cta-wave-title {
    color: var(--white, #ffffff);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

/* Subtítulo */
.cta-wave-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Botões */
.cta-wave-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

.btn-cta,
.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-cta {
    background: var(--white, #ffffff);
    color: var(--primary, #009b97);
}

.btn-cta:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-whatsapp {
    background: #25D366;
    color: var(--white, #ffffff);
}

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

/* Responsivo */
@media (max-width: 768px) {
    .cta-wave-section {
        padding: 100px 0 100px;
    }
    
    .cta-wave-top svg,
    .cta-wave-bottom svg {
        height: 70px;
    }
    
    .cta-wave-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }
    
    .cta-wave-title {
        font-size: 1.6rem;
    }
    
    .cta-wave-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .btn-cta,
    .btn-cta-whatsapp {
        padding: 14px 26px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .cta-wave-section {
        padding: 80px 0 80px;
    }
    
    .cta-wave-top svg,
    .cta-wave-bottom svg {
        height: 50px;
    }
    
    .cta-wave-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .cta-wave-title {
        font-size: 1.4rem;
    }
    
    .cta-wave-subtitle {
        font-size: 0.95rem;
    }
    
    .cta-wave-subtitle br {
        display: none;
    }
    
    .cta-wave-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    
    .btn-cta,
    .btn-cta-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   LOCATION SECTION - Estilo DomLab
   ============================================ */

.location-section {
    padding: 100px 0;
    background: var(--white, #ffffff);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: stretch;
    margin-top: 50px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--white, #ffffff);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.location-card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary, #009b97) 0%, var(--primary-light, #3ab5a5) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white, #ffffff);
    font-size: 1.2rem;
}

.location-card-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary, #264653);
    margin-bottom: 8px;
}

.location-card-content p {
    color: var(--text, #5a6f7e);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.location-card-content a {
    color: var(--text, #5a6f7e);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-card-content a:hover {
    color: var(--primary, #009b97);
}

.location-whatsapp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 6px 12px;
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.location-btn {
    margin-top: 10px;
    align-self: flex-start;
}

.location-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    min-height: 400px;
    background: var(--gray-100, #f0f4f6);
}

.location-map iframe {
    display: block;
    min-height: 400px;
}

/* Responsivo */
@media (max-width: 992px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-map {
        min-height: 350px;
        order: -1;
    }
    
    .location-map iframe {
        min-height: 350px;
    }
    
    .location-btn {
        align-self: stretch;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .location-section {
        padding: 70px 0;
    }
    
    .location-card {
        padding: 20px;
        gap: 16px;
    }
    
    .location-card-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1rem;
    }
    
    .location-card-content h4 {
        font-size: 1rem;
    }
    
    .location-card-content p {
        font-size: 0.9rem;
    }
    
    .location-map {
        min-height: 280px;
    }
    
    .location-map iframe {
        min-height: 280px;
    }
}