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

:root {
    --azul-marinho: #4a7ba7;
    --azul-marinho-claro: #e8f0f8;
    --azul-marinho-escuro: #2d5a8a;
    --branco: #ffffff;
    --dourado: #d4af37;
    --dourado-claro: #f5e6d3;
    --texto: #2c2c2c;
    --texto-claro: #666666;
    --sombra: rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: auto;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--texto);
    background-color: var(--branco);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 2.75rem;
}

/* Barra de anúncios — texto em rolagem */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(90deg, var(--azul-marinho-escuro) 0%, var(--azul-marinho) 50%, var(--azul-marinho-escuro) 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 2px 12px rgba(45, 90, 138, 0.25);
}

.announcement-inner {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.announcement-track {
    display: flex;
    width: max-content;
    animation: announcement-marquee 32s linear infinite;
}

.announcement-text {
    flex-shrink: 0;
    padding: 0.65rem 3rem;
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--branco);
    white-space: nowrap;
}

.announcement-text::after {
    content: '✦';
    margin-left: 3rem;
    color: var(--dourado);
    font-weight: 400;
    opacity: 0.95;
}

@keyframes announcement-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .announcement-track {
        animation: none;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .announcement-text {
        padding: 0.65rem 1rem;
    }

    .announcement-text:not(:first-child) {
        display: none;
    }

    .announcement-text::after {
        content: none;
    }

    .announcement-inner {
        mask-image: none;
        -webkit-mask-image: none;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--branco) 0%, var(--azul-marinho-claro) 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--dourado-claro) 0%, transparent 70%);
    top: -50%;
    left: -50%;
    opacity: 0.3;
    animation: rotate 28s linear infinite;
    will-change: transform;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.logo {
    width: auto;
    height: clamp(300px, 56vw, 760px);
    max-width: 98vw;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    object-fit: contain;
    position: relative;
    z-index: 1;
    
    /* Brilho azul marinho ao redor (camadas reduzidas para melhor desempenho ao rolar) */
    filter: drop-shadow(0 0 50px rgba(74, 123, 167, 0.55))
            drop-shadow(0 12px 28px rgba(0, 0, 0, 0.18));
}

.logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(74, 123, 167, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.9;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.logo.animate {
    opacity: 1;
    transform: translateY(0);
}

.tagline {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--texto-claro);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.15s,
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.tagline.animate {
    opacity: 1;
    transform: translateY(0);
}

.hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    color: var(--texto);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 1.25rem;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.3s,
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.hero-description.animate {
    opacity: 1;
    transform: translateY(0);
}

.hero .hero-cta {
    width: auto;
    max-width: min(100%, 22rem);
    margin: 0.5rem auto 2rem;
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.42s,
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.42s,
        box-shadow 0.3s ease,
        filter 0.3s ease;
}

.hero .hero-cta.animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--texto-claro);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--dourado);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--dourado);
    border-bottom: 2px solid var(--dourado);
    transform: rotate(45deg);
}

/* Techniques Section */
.techniques {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.technique {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 12rem;
    opacity: 0;
    transform: translate3d(0, 36px, 0);
    transition:
        opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.technique.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.technique-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 20px 60px var(--sombra);
}

.technique-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.technique:hover .technique-image {
    transform: scale(1.03);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--azul-marinho-claro) 0%, transparent 50%);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.technique:hover .image-overlay {
    opacity: 0.1;
}

.technique-content {
    padding: 2rem;
}

.technique-number {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    overflow: hidden;
    
    /* Fundo azul marinho */
    background: var(--azul-marinho);
    color: var(--dourado);
    
    /* Borda dourada */
    border: 2px solid var(--dourado);
    box-shadow: 
        inset 0 1px 2px rgba(255, 255, 255, 0.2),
        0 2px 8px rgba(212, 175, 55, 0.4),
        0 0 15px rgba(212, 175, 55, 0.2);
    
    /* Efeito de reflexo estático */
    position: relative;
    z-index: 2;
}

.technique-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 40%,
        transparent 60%,
        rgba(0, 0, 0, 0.1) 100%
    );
    border-radius: 10px;
    pointer-events: none;
    z-index: 1;
}

.technique-number::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%
    );
    border-radius: 10px;
    pointer-events: none;
    z-index: 0;
}

.technique:hover .technique-number {
    transform: scale(1.05);
    box-shadow: 
        inset 0 1px 2px rgba(255, 255, 255, 0.3),
        0 4px 16px rgba(212, 175, 55, 0.6),
        0 0 25px rgba(212, 175, 55, 0.4);
    border-color: var(--dourado);
}

.technique-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--texto);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.technique-description {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--texto-claro);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 300;
}

.technique-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 0.5rem 1.5rem;
    background: var(--azul-marinho-claro);
    color: var(--texto);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 400;
    border: 1px solid var(--azul-marinho);
}

/* Procedures Section */
.procedures {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--branco) 0%, var(--azul-marinho-claro) 100%);
}

.procedures-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--texto);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--texto-claro);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.promotion-notice {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--dourado);
    font-weight: 500;
    margin: 2rem 0 1rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(74, 123, 167, 0.1) 100%);
    border-radius: 50px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    display: inline-block;
    animation: promotionGlow 3.5s ease-in-out infinite;
}

@keyframes promotionGlow {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.12);
    }
    50% {
        opacity: 0.96;
        box-shadow: 0 0 0 6px rgba(255, 215, 0, 0.06);
    }
}

.maintenance-notice {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--texto-claro);
    font-weight: 300;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(74, 123, 167, 0.1);
    border-radius: 12px;
    border-left: 3px solid var(--azul-marinho);
    display: inline-block;
    max-width: 90%;
}

.procedures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.procedure-card {
    background: var(--branco);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--sombra);
    transition:
        opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
    opacity: 0;
    transform: translate3d(0, 22px, 0);
}

.procedure-card.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.procedure-card:hover {
    transform: translate3d(0, -6px, 0);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.procedure-card.active {
    transform: translate3d(0, -6px, 0) scale(1.015);
    box-shadow: 0 20px 56px rgba(74, 123, 167, 0.22);
}

.procedure-image-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.procedure-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.procedure-card:hover .procedure-image {
    transform: scale(1.05);
}

.procedure-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--dourado) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.procedure-card:hover .procedure-overlay {
    opacity: 0.2;
}

.procedure-info {
    padding: 2rem;
}

.procedure-name {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 400;
    color: var(--texto);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.procedure-desc {
    font-size: 1rem;
    color: var(--texto-claro);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.procedure-pricing {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--azul-marinho-claro);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.price-item.promotion {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(74, 123, 167, 0.15) 100%);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin-bottom: 0.5rem;
}

.price-item.promotion .price-label {
    color: var(--dourado);
    font-weight: 500;
}

.price-item.promotion .price-value {
    color: var(--dourado);
    font-weight: 700;
    font-size: 1.6rem;
}

.price-label {
    font-size: 1rem;
    color: var(--texto-claro);
    font-weight: 300;
}

.price-value {
    font-size: 1.5rem;
    color: var(--dourado);
    font-weight: 500;
}

.schedule-btn {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--azul-marinho) 0%, var(--azul-marinho-escuro) 100%);
    color: var(--branco);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-decoration: none;
    text-align: center;
}

.schedule-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(74, 123, 167, 0.4);
    color: var(--branco);
}

.schedule-btn:active {
    transform: scale(0.98);
}

/* Instagram Section */
.instagram-section {
    padding: 6rem 2rem;
    background: var(--branco);
}

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

.instagram-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--texto);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.instagram-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--texto-claro);
    font-weight: 300;
    margin-bottom: 3rem;
}

.instagram-gallery {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.instagram-link {
    display: block;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.instagram-link:hover {
    transform: scale(1.02);
    z-index: 2;
}

.instagram-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.instagram-link:hover .instagram-image {
    transform: scale(1.05);
}

.instagram-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--azul-marinho) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-link:hover::after {
    opacity: 0.3;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--azul-marinho) 0%, var(--azul-marinho-escuro) 100%);
    color: var(--branco);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 123, 167, 0.3);
}

.instagram-follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 123, 167, 0.5);
}

.instagram-follow-btn svg {
    transition: transform 0.3s ease;
}

.instagram-follow-btn:hover svg {
    transform: rotate(15deg) scale(1.1);
}

/* Footer */
.footer {
    background: var(--branco);
    color: var(--texto);
    padding: 6rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dourado), transparent);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    width: auto;
    height: clamp(150px, 18vw, 250px);
    max-width: 400px;
    margin-bottom: 2rem;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    
    /* Brilho azul marinho ao redor */
    filter: drop-shadow(0 0 30px rgba(74, 123, 167, 0.7))
            drop-shadow(0 0 60px rgba(74, 123, 167, 0.5))
            drop-shadow(0 0 90px rgba(74, 123, 167, 0.3))
            drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
}

.footer-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(74, 123, 167, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.footer-logo:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 25px rgba(74, 123, 167, 0.9))
            drop-shadow(0 0 50px rgba(74, 123, 167, 0.7))
            drop-shadow(0 0 75px rgba(74, 123, 167, 0.5))
            drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
}

.footer-tagline {
    font-size: 1.3rem;
    color: var(--texto);
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.footer-description {
    font-size: 1rem;
    color: var(--texto-claro);
    font-weight: 300;
    line-height: 1.8;
}

.footer-address {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dourado);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-icon {
    font-size: 1.2rem;
    opacity: 0.8;
}

.address-text {
    font-style: normal;
    color: var(--texto);
    opacity: 0.9;
    line-height: 1.8;
    font-weight: 300;
}

.address-text p {
    margin: 0;
    font-size: 1rem;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dourado);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--dourado);
    border-radius: 50px;
    transition: all 0.3s ease;
    width: fit-content;
}

.map-link:hover {
    background: var(--dourado);
    color: var(--texto);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.map-link svg {
    transition: transform 0.3s ease;
}

.map-link:hover svg {
    transform: translateX(3px);
}

.footer-map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background: var(--branco);
    min-height: 400px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.google-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    filter: grayscale(20%) brightness(0.9);
    transition: filter 0.3s ease;
}

.map-wrapper:hover .google-map {
    filter: grayscale(0%) brightness(1);
}

.map-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.map-wrapper:hover .map-overlay {
    opacity: 1;
    pointer-events: all;
}

.map-link-overlay {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--texto);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 123, 167, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-link-overlay:hover {
    background: var(--dourado);
    color: var(--texto);
    transform: scale(1.05);
    border-color: var(--dourado);
}

.map-link-overlay svg {
    transition: transform 0.3s ease;
}

.map-link-overlay:hover svg {
    transform: translateX(3px);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(74, 123, 167, 0.1);
    border: 1px solid rgba(74, 123, 167, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--texto);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.social-link:hover {
    background: var(--dourado);
    border-color: var(--dourado);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.social-link svg {
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--texto-claro);
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.footer-made {
    font-size: 0.9rem;
    color: var(--texto-claro);
    opacity: 0.8;
    font-weight: 300;
}

.heart {
    color: var(--azul-marinho);
    animation: heartbeat 1.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.1);
    }
    20%, 40% {
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .technique {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 6rem;
    }

    .procedures-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 90vh;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-info {
        gap: 2.5rem;
    }

    .footer-map-container {
        min-height: 300px;
    }

    .map-wrapper,
    .google-map {
        min-height: 300px;
    }

    .footer {
        padding: 4rem 1.5rem 2rem;
    }

    .footer-social {
        gap: 1.5rem;
        justify-content: flex-start;
    }

    .map-overlay {
        opacity: 1;
        pointer-events: all;
        top: 0.5rem;
        right: 0.5rem;
    }

    .map-link-overlay {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .instagram-section {
        padding: 4rem 1.5rem;
    }

    .instagram-gallery {
        margin-bottom: 2rem;
    }

    .instagram-follow-btn {
        font-size: 1rem;
        padding: 0.9rem 2rem;
    }
}

.hidden {
    display: none !important;
}

/* Sobrescreve hidden quando visible está presente */
.procedure-pricing.visible {
    display: flex !important;
    flex-direction: column !important;
    opacity: 1 !important;
    max-height: 200px !important;
    padding-top: 1rem !important;
    border-top: 1px solid var(--azul-marinho-claro) !important;
}

.schedule-btn.visible {
    display: inline-block !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    max-height: 100px !important;
    padding: 1rem 2rem !important;
    margin-top: 1rem !important;
    overflow: visible !important;
}

/* Menos animação contínua = rolagem mais leve; respeita preferência do sistema */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero::before {
        animation: none;
        opacity: 0.22;
    }

    .logo::before {
        animation: none;
        opacity: 0.5;
    }

    .scroll-indicator {
        animation: none;
    }

    .promotion-notice {
        animation: none;
        opacity: 1;
    }

    .heart {
        animation: none !important;
    }

    .hero .hero-cta {
        opacity: 1;
        transform: none;
        transition: none;
    }
}