.services-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    justify-content: center;
    margin: 60px auto;
    max-width: 1100px;
    padding: 0 40px;
}

/* Seção de Serviços */
.services-section {
    scroll-margin-top: var(--header-height);
    padding-top: 40px;
}

@media (max-width: 900px) {
    .services-categories {
        grid-template-columns: 1fr;
        max-width: 500px;
        padding: 0 24px;
    }
}

/* ===================================
   FLIP CARDS - EFEITO 3D PREMIUM
   =================================== */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 520px;
    perspective: 1500px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 24px;
    overflow: hidden;
}

/* FRENTE DO CARD - Imagem */
.flip-card-front {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.flip-card-corpo {
    background-image: url('../imagens/massagem-corpo.jpg');
    background-position: center 40%;
}

.flip-card-rosto {
    background-image: url('../imagens/massagem-facial.jpg');
    background-position: center 30%;
}

.flip-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(0, 0, 0, 0.1) 0%, 
        rgba(0, 0, 0, 0.3) 40%,
        rgba(26, 26, 26, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 50px 35px;
    text-align: center;
}

.flip-icon {
    font-size: 3.5rem;
    color: #d4a843;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    filter: drop-shadow(0 0 10px rgba(212, 168, 67, 0.3));
}

.flip-card-overlay h3 {
    color: #ffffff;
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin: 0 0 18px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5px;
}

.flip-hint {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.flip-hint i {
    animation: rotateHint 2s ease-in-out infinite;
}

@keyframes rotateHint {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

/* VERSO DO CARD - Conteúdo */
.flip-card-back {
    background: #ffffff;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.flip-card-header {
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 28px 32px;
    border-radius: 24px 24px 0 0;
    position: relative;
}

.flip-card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 32px;
    right: 32px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4a843, transparent);
}

.flip-card-header h3 {
    color: #ffffff;
    font-size: 1.35rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.flip-card-header h3 i {
    color: #d4a843;
    font-size: 1.2rem;
}

.flip-card-list {
    list-style: none;
    padding: 30px 32px;
    margin: 0;
    flex-grow: 1;
    text-align: left;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.flip-card-list li {
    margin-bottom: 18px;
    padding-left: 32px;
    position: relative;
    line-height: 1.5;
    transition: transform 0.2s ease;
}

.flip-card-list li:hover {
    transform: translateX(5px);
}

.flip-card-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 3px;
    color: #ffffff;
    background: linear-gradient(135deg, #d4a843, #c49a2d);
    font-weight: 700;
    font-size: 0.65rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(212, 168, 67, 0.3);
}

.flip-card-list li:last-child {
    margin-bottom: 0;
}

.flip-card-list b {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    margin-bottom: 3px;
}

.flip-card-list span {
    font-size: 0.85rem;
    color: #777;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
}

.flip-card-btn {
    margin: 0;
    padding: 18px 28px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: #ffffff !important;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 0 0 20px 20px;
    transition: background 0.3s ease;
}

.flip-card-btn:hover {
    background: linear-gradient(135deg, #2a2a2a 0%, #444444 100%);
}

.flip-card-btn i {
    color: #25d366 !important;
    font-size: 1.1rem;
}

/* Responsivo para flip cards */
@media (max-width: 768px) {
    .flip-card {
        height: 420px;
    }
    
    .flip-card-overlay h3 {
        font-size: 1.5rem;
    }
    
    .flip-icon {
        font-size: 2.5rem;
    }
    
    .flip-card-list li {
        margin-bottom: 10px;
    }
    
    .flip-card-list b {
        font-size: 0.88rem;
    }
    
    .flip-card-list span {
        font-size: 0.78rem;
    }
}

/* Seção de Nota dos Serviços */
.services-note-section {
    padding: 40px 32px 60px;
    text-align: center;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.services-note {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    font-family: 'Inter', sans-serif;
    padding: 32px 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #d4a843;
}

.services-note em {
    display: block;
    margin-top: 16px;
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 500;
    font-style: italic;
}

/* ===================================
   SEÇÃO SOBRE NÓS - DESIGN MODERNO
   =================================== */
.about-section-new {
    padding: 100px 5%;
    background: linear-gradient(180deg, #ffffff 0%, #f8f6f3 100%);
    position: relative;
    overflow: hidden;
    scroll-margin-top: var(--header-height);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Lado da Imagem */
.about-image-side {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-main-image {
    transform: scale(1.05);
}

.about-experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #d4a843 0%, #c49933 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(212, 168, 67, 0.4);
    z-index: 10;
}

.about-experience-badge .experience-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.about-experience-badge .experience-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 5px;
}

/* Lado do Conteúdo */
.about-content-side {
    padding: 20px 0;
}

.about-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #d4a843;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 45px;
}

.about-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 2px;
    background: #d4a843;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-intro {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.9;
    margin-bottom: 40px;
}

/* Features Grid */
.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 45px;
}

.about-feature {
    text-align: center;
    padding: 25px 15px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #d4a843 0%, #c49933 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-icon i {
    font-size: 1.4rem;
    color: white;
}

.feature-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

/* Founder Card */
.founder-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #d4a843;
}

.founder-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #d4a843;
}

.founder-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 3px;
}

.founder-info span {
    font-size: 0.9rem;
    color: #d4a843;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.founder-info p {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}

/* Responsivo Sobre Nós */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image-side {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-experience-badge {
        bottom: -20px;
        right: 20px;
        width: 120px;
        height: 120px;
    }
    
    .about-experience-badge .experience-number {
        font-size: 2.5rem;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about-section-new {
        padding: 60px 5%;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-feature {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 15px;
        padding: 20px;
    }
    
    .feature-icon {
        margin: 0;
        flex-shrink: 0;
    }
    
    .about-main-image {
        height: 350px;
    }
    
    .founder-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-intro {
        font-size: 1rem;
    }
    
    .about-experience-badge {
        width: 100px;
        height: 100px;
        right: 10px;
        bottom: -15px;
    }
    
    .about-experience-badge .experience-number {
        font-size: 2rem;
    }
    
    .about-experience-badge .experience-text {
        font-size: 0.65rem;
    }
}

/* ===================================
    CSS PROFISSIONAL - DINA CARVALHO
    Design Moderno e Elegante
    =================================== */

/* Reset Global Melhorado */
*, *:before, *:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Variáveis globais para facilitar ajustes de layout */
:root {
    --header-height: 95px; /* altura total do header fixo */
}

/* Tipografia Profissional */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.5px;
    color: #2F2F2F;
}

body, p, span {
    font-family: 'Inter', sans-serif;
    color: #555555;
    font-size: 1rem;
    line-height: 1.7;
}

/* Links com cores específicas para evitar conflitos */
a {
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    color: #555555;
}

/* Regras específicas para botões - devem sempre ter precedência */
a.category-btn,
a.cta-button,
a.hero-cta-primary,
a.hero-cta-secondary,
a.nav-link {
    color: white !important;
}

a.nav-link {
    color: #4A4A4A !important;
}

a.nav-link:hover {
    color: white !important;
}

p {
    margin: 0;
}

/* Classe para texto apenas para leitores de tela */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===================================
   HEADER/NAVEGAÇÃO PROFISSIONAL
   =================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(26, 26, 26, 0.08);
    z-index: 900;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(26, 26, 26, 0.06);
    height: var(--header-height);
    display: flex;
    align-items: center; /* garante alinhamento vertical */
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(26, 26, 26, 0.12);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    transition: padding 0.3s ease;
    height: 100%;
}

.main-header.scrolled .main-nav {
    padding: 15px 40px;
}

/* Brand Section */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.header-logo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(26, 26, 26, 0.1);
}

.header-logo:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 8px 25px rgba(26, 26, 26, 0.15);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1A1A1A;
    line-height: 1.2;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

.brand-tagline {
    font-size: 0.75rem;
    color: #666;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

/* Navigation Menu */
.nav-menu-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #4A4A4A !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 12px 20px;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4a843 0%, #c49933 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-link:hover::before {
    left: 0;
}

.nav-link:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.3);
}

.nav-link:hover .nav-text,
.nav-link:hover .nav-icon,
.nav-link:hover i {
    color: #ffffff !important;
}

.nav-icon {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.nav-link:hover .nav-icon {
    transform: scale(1.1);
}

.nav-text {
    font-weight: 500;
}

/* CTA Button in Navigation */
.nav-cta {
    background: linear-gradient(135deg, #1A1A1A 0%, #333 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(26, 26, 26, 0.2);
}

.nav-cta::before {
    background: linear-gradient(135deg, #333 0%, #555 100%);
}

.nav-cta:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 26, 26, 0.25);
}

/* Botão de Marcações na Navegação */
.category-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4a843 0%, #c49933 100%);
    color: white !important;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(212, 168, 67, 0.35);
    border: 2px solid transparent;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.category-btn:hover {
    background: linear-gradient(135deg, #c49933 0%, #b38a28 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 168, 67, 0.45);
}

.category-btn i {
    color: white !important;
    transition: transform 0.3s ease;
}

.category-btn:hover i {
    transform: scale(1.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #1A1A1A;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===================================
   MOBILE NAVIGATION - RESPONSIVE
   =================================== */
@media (max-width: 900px) {
    .main-header {
        height: 70px;
    }
    
    :root {
        --header-height: 70px;
    }
    
    .main-nav {
        padding: 10px 20px;
    }
    
    .nav-brand {
        flex: 1;
        min-width: 0; /* permite que o texto encolha */
    }
    
    .brand-text {
        overflow: hidden;
    }
    
    .header-logo {
        width: 45px;
        height: 45px;
        flex-shrink: 0;
    }
    
    .brand-name {
        font-size: 1.1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .brand-tagline {
        font-size: 0.65rem;
    }
    
    .nav-menu-container {
        flex-shrink: 0;
        margin-left: 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px 20px;
        gap: 15px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .nav-menu.active,
    .nav-menu.mobile-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .category-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
    }
}

/* Ecrãs mais pequenos */
@media (max-width: 480px) {
    .main-header {
        height: 65px;
    }
    
    :root {
        --header-height: 65px;
    }
    
    .main-nav {
        padding: 8px 15px;
    }
    
    .header-logo {
        width: 40px;
        height: 40px;
    }
    
    .brand-name {
        font-size: 0.95rem;
    }
    
    .brand-tagline {
        font-size: 0.6rem;
    }
    
    .nav-brand {
        gap: 10px;
    }
    
    .nav-menu {
        top: 65px;
    }
}

/* ===================================
   HERO BANNER SECTION PROFISSIONAL
   =================================== */
.hero-banner {
    width: 100%;
    height: 100vh;
    min-height: 650px;
    margin-top: 0;
    background: 
        linear-gradient(135deg, 
            rgba(26, 26, 26, 0.75) 0%, 
            rgba(40, 40, 40, 0.5) 50%,
            rgba(26, 26, 26, 0.7) 100%
        ),
        url('/imagens/fundo.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

/* Ajustes para evitar problemas de corte em ecrãs pequenos e melhorar desempenho móvel */
@media (max-width: 992px) {
    .hero-banner {
        background-position: center 50%;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        margin-top: var(--header-height);
        height: auto;
        min-height: 520px;
        background-attachment: scroll; /* melhora performance em mobile */
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.3) 0%, 
        rgba(0, 0, 0, 0.1) 50%, 
        rgba(26, 26, 26, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner-content {
    text-align: center;
    color: #ffffff;
    z-index: 2;
    max-width: 800px;
    padding: 0 40px;
    animation: heroFadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 168, 67, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 168, 67, 0.5);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    color: #d4a843;
}

.hero-banner-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    margin-bottom: 25px;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    color: #ffffff;
    line-height: 1.1;
    font-family: 'Cormorant Garamond', serif;
}

.hero-banner-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 300;
    text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Inter', sans-serif;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #d4a843 0%, #c49933 100%);
    color: white !important;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 35px rgba(212, 168, 67, 0.4);
    border: 2px solid transparent;
    font-family: 'Inter', sans-serif;
}

.hero-cta-primary:hover {
    background: linear-gradient(135deg, #c49933 0%, #b38a28 100%);
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(212, 168, 67, 0.5);
}

.hero-cta-primary i {
    transition: transform 0.3s ease;
}

.hero-cta-primary:hover i {
    transform: translateX(5px);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: white !important;
    padding: 18px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
}

.hero-cta-secondary span {
    color: white !important;
}

.hero-cta-secondary i {
    color: white !important;
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-scroll-indicator:hover {
    transform: translateX(-50%) translateY(5px);
}

.hero-scroll-indicator i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.8rem;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-indicator:hover i {
    color: #ffffff;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* ===================================
   MAIN CONTENT & SPACING
   =================================== */
.main-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===================================
   HERO SECTION (Apresentação) PROFISSIONAL
   =================================== */
.hero-section {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        #FAFAFA 0%, 
        #FFFFFF 25%, 
        #F8F9FA 75%, 
        #F5F5F5 100%);
    margin: 0 -40px 100px -40px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(26, 26, 26, 0.02) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.section-label {
    display: inline-block;
    margin-bottom: 20px;
}

.section-label span {
    background: linear-gradient(135deg, #1A1A1A 0%, #333 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Inter', sans-serif;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    font-weight: 300;
    color: #1A1A1A;
    margin: 0 0 20px 0;
    line-height: 1.1;
    letter-spacing: -1px;
    font-family: 'Cormorant Garamond', serif;
    background: linear-gradient(135deg, #1A1A1A 0%, #333 70%, #1A1A1A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-style: italic;
    color: #666;
    margin: 0 0 30px 0;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    font-family: 'Playfair Display', serif;
}

.hero-tagline em {
    color: #1A1A1A;
    font-weight: 500;
}

.hero-subtitle {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #1A1A1A;
    margin: 0 0 35px 0;
    font-weight: 500;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
}

.hero-description {
    margin-bottom: 40px;
}

.hero-description p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
}

.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
}

.highlight-item i {
    width: 20px;
    height: 20px;
    color: #1A1A1A;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.highlight-item span {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #1A1A1A 0%, #333 100%);
    color: white !important;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(26, 26, 26, 0.2);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 26, 26, 0.3);
    color: white !important;
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Hero Image Section */
.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(26, 26, 26, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 100px rgba(26, 26, 26, 0.2);
}

.salon-image {
    max-width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    text-align: center;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 10px;
    animation: pulse 2s infinite;
}

.overlay-content span {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

/* ===================================
   CHAT BUTTON STYLES
   =================================== */
.chat-button-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-button-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(26, 26, 26, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.9);
}

.chat-button-image:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(26, 26, 26, 0.4);
}

/* ===================================
   SEÇÃO DE MARCAÇÕES CRIATIVA
   =================================== */
.booking-section {
    margin-top: 40px;
    margin-bottom: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid rgba(26,26,26,0.06);
    border-radius: 32px;
    padding: 70px clamp(1.5rem,3vw,3.5rem);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 28px -6px rgba(26,26,26,0.07),0 2px 6px rgba(26,26,26,0.04);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

/* Subtitle para a seção */
.section-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    margin-top: 10px;
    font-weight: 400;
}

/* Hero CTA da seção marcações */
.booking-cta-hero {
    background: linear-gradient(135deg, #2c2c2c 0%, #495057 100%);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    margin: 40px auto 60px;
    max-width: 800px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.booking-cta-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.booking-hero-content h3 {
    color: #ffffff;
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.booking-hero-content p {
    color: #e9ecef;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.booking-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.booking-btn.primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.booking-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.4);
}

.booking-btn.secondary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.booking-btn.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

/* Ícones dos itens de marcação */
.booking-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(44, 44, 44, 0.03) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: clamp(2.2rem,4vw,3rem);
    color: #1A1A1A;
    margin: 0 0 18px 0;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    line-height: 1.15;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #2c2c2c, #495057);
    border-radius: 2px;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2.2rem,3.5vw,3.5rem);
    position: relative;
    z-index: 2;
    align-items: start;
    max-width: 980px;
    margin-inline: auto;
}

/* Telefone destaque criativo */
.booking-info h3 {
    background: linear-gradient(135deg,#1F1F1F 0%,#272829 60%,#2F3132 100%);
    color: #fff;
    padding: 26px clamp(1.8rem,3.2vw,3.2rem);
    border-radius: 32px;
    font-size: clamp(1.35rem,2.1vw,1.75rem);
    text-align: center;
    margin: 0 auto 52px;
    box-shadow: 0 10px 32px -12px rgba(0,0,0,0.55),0 3px 6px -1px rgba(0,0,0,0.35);
    transition: all .55s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
    font-weight: 500;
    letter-spacing: .5px;
    width: min(100%,840px);
}

.booking-info h3::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(125deg,rgba(255,255,255,0.08) 0%,rgba(255,255,255,0) 60%),
        radial-gradient(circle at 25% 35%,rgba(255,255,255,0.18),transparent 70%);
    mix-blend-mode: overlay;
    opacity: .85;
    pointer-events: none;
    transition: transform .9s ease, opacity .6s ease;
    transform: scale(1.2);
}

.booking-info h3:hover::before {
    transform: scale(1.3);
    opacity: 1;
}

.booking-info h3:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px -14px rgba(0,0,0,0.55),0 4px 10px -2px rgba(0,0,0,0.35);
}

.booking-info h3 i {
    margin-right: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Cards informativos criativos */
.booking-details {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    align-items: stretch;
}

/* Forçar sempre 3 colunas em ecrãs médios/grandes */
@media (min-width: 820px) {
    .booking-details {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Ajuste para tablets médios onde a largura ainda não comporta 3 colunas confortáveis */
@media (min-width: 640px) and (max-width: 819.98px) {
    .booking-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

.booking-item {
    background: linear-gradient(145deg,#FFFFFF 0%,#F7F8F9 100%);
    padding: 30px clamp(1.6rem,2.2vw,2.4rem);
    border-radius: 28px;
    border: 1px solid rgba(26,26,26,0.05);
    box-shadow: 0 6px 18px -6px rgba(0,0,0,0.10),0 2px 4px -1px rgba(0,0,0,0.06);
    transition: all .5s cubic-bezier(.4,0,.2,1);
    position: relative;
    overflow: hidden;
}

.booking-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 20%,rgba(0,0,0,0.06),transparent 70%),
        linear-gradient(120deg,rgba(0,0,0,0.04),rgba(0,0,0,0));
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;
}

.booking-item:hover::before {
    opacity: 1;
}

.booking-item:hover {
    transform: translateY(-8px) scale(1.012);
    box-shadow: 0 22px 48px -18px rgba(0,0,0,0.28),0 8px 16px -4px rgba(0,0,0,0.10);
    background: linear-gradient(155deg,#FFFFFF 0%,#F1F2F3 100%);
}

.booking-item h4 {
    color: #151515;
    font-size: 1.12rem;
    margin: 0 0 18px 0;
    font-weight: 600;
    position: relative;
    display: flex;
    align-items: center;
    letter-spacing: .25px;
}

.booking-item h4::before {
    content: '✨';
    margin-right: 10px;
    font-size: 1.2em;
}

.booking-item:nth-child(2) h4::before {
    content: '⏰';
}

.booking-item:nth-child(3) h4::before {
    content: '💡';
}

.booking-item p {
    color: #3D3F42;
    line-height: 1.58;
    margin: 0;
    font-size: .97rem;
}

/* Seção de contactos criativa */
.contact-info-booking {
    background: linear-gradient(140deg,#1E1E1E 0%,#2F3235 100%);
    color: #fff;
    padding: 56px clamp(1.25rem,2.5vw,2.7rem) 54px;
    border-radius: 36px;
    box-shadow: 0 10px 34px -10px rgba(0,0,0,0.55),0 2px 4px rgba(0,0,0,0.35);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

.contact-info-booking::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%,rgba(255,255,255,.08),transparent 60%),
        radial-gradient(circle at 20% 80%,rgba(255,255,255,.06),transparent 65%);
    animation: none;
    pointer-events: none;
}

.contact-info-booking h3 {
    color: #fff;
    font-size: clamp(1.8rem,3vw,2.2rem);
    margin: 0 0 34px 0;
    text-align: center;
    font-weight: 500;
    position: relative;
    z-index: 2;
    letter-spacing: .5px;
}

.contact-details {
    position: relative;
    z-index: 2;
}

.contact-details p {
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .95rem;
}

.contact-details strong {
    color: #fff;
    min-width: 82px;
    font-weight: 500;
    letter-spacing: .3px;
}

.contact-details a {
    color: #fff;
    text-decoration: none;
    transition: color .35s ease, text-shadow .4s ease;
}

.contact-details a:hover {
    color: #25D366;
    text-shadow: 0 0 6px rgba(37,211,102,0.6);
}

.address-booking,
.hours-booking {
    margin: 26px 0;
    padding: 22px 24px 24px;
    background: rgba(255,255,255,0.06);
    border-radius: 22px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
}

.social-booking {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(120px,1fr));
    gap: 16px;
    margin-top: 40px;
}

.social-link-booking {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 18px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    transition: all .4s ease;
    font-weight: 500;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    font-size: .9rem;
}

.social-link-booking:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px -4px rgba(0,0,0,0.35);
}

.social-link-booking.facebook:hover {
    background: #1877f2;
}

.social-link-booking.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link-booking.whatsapp:hover {
    background: #25D366;
}

/* ===================================
   SEÇÃO SOBRE NÓS
   =================================== */
section {
    margin-bottom: 80px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h3 {
    color: #2c2c2c;
    font-size: 2em;
    margin: 0 0 25px 0;
    font-weight: 300;
    position: relative;
    padding-bottom: 15px;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #2c2c2c, #495057);
    border-radius: 2px;
}

.about-text p {
    color: #495057;
    line-height: 1.8;
    margin: 0 0 20px 0;
    font-size: 1.1em;
}

.team-preview h3 {
    color: #2c2c2c;
    font-size: 2em;
    margin: 0 0 30px 0;
    font-weight: 300;
    position: relative;
    padding-bottom: 15px;
}

.team-preview h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #2c2c2c, #495057);
    border-radius: 2px;
}

.team-member {
    background: linear-gradient(145deg, #FFFFF0 0%, #F8F8F0 100%);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(233, 236, 239, 0.8);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 20px rgba(44, 44, 44, 0.08);
    margin-bottom: 25px;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2c2c2c 0%, #495057 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.team-member:hover::before {
    transform: scaleX(1);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(44, 44, 44, 0.15);
    background: #FFFFF0;
}

.team-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    float: left;
    margin: 0 25px 15px 0;
    border: 4px solid #FFFFF0;
    box-shadow: 0 5px 15px rgba(44, 44, 44, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.team-member:hover .team-photo {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(44, 44, 44, 0.2);
}

.member-info h4 {
    color: #2c2c2c;
    font-size: 1.4em;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.member-role {
    color: #495057;
    font-style: italic;
    font-weight: 500;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9em;
}

.member-description {
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   SEÇÃO SERVIÇOS
   =================================== */
/* Grid de serviços refinado */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.4rem,2.2vw,2.2rem);
    margin: 3.2rem 0 3.4rem;
    align-items: stretch;
}

/* Cartão de serviço premium */
.service-item {
    position: relative;
    background: linear-gradient(145deg,#FFFFFF 0%,#F7F8F9 100%);
    padding: 2.4rem 2rem 2.6rem;
    border-radius: 28px;
    text-align: center;
    transition: all .55s cubic-bezier(.4,0,.2,1);
    border: 1px solid rgba(26,26,26,0.06);
    box-shadow: 0 6px 18px -8px rgba(0,0,0,0.12),0 2px 4px -1px rgba(0,0,0,0.05);
    overflow: hidden;
    isolation: isolate;
}

/* Layer decorativa suave */
.service-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 20%,rgba(0,0,0,0.05),transparent 60%),
        radial-gradient(circle at 80% 75%,rgba(0,0,0,0.04),transparent 70%);
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;
    z-index: -1;
}

/* Estados de interação */
.service-item:hover,
.service-item:focus-within {
    transform: translateY(-10px) scale(1.015);
    box-shadow: 0 24px 48px -18px rgba(0,0,0,0.28),0 8px 18px -6px rgba(0,0,0,0.10);
    background: linear-gradient(155deg,#FFFFFF 0%,#F1F2F3 100%);
}

.service-item:hover::before,
.service-item:focus-within::before {
    opacity: 1;
}

/* Animação de entrada progressiva (aplicada via JS opcional ou simplesmente pelo atraso nth-child) */
.service-item { opacity: 0; animation: serviceFade .9s ease forwards; }
.service-item:nth-child(1){animation-delay:.05s}
.service-item:nth-child(2){animation-delay:.15s}
.service-item:nth-child(3){animation-delay:.25s}
.service-item:nth-child(4){animation-delay:.35s}
.service-item:nth-child(5){animation-delay:.45s}
.service-item:nth-child(6){animation-delay:.55s}

@keyframes serviceFade { from {opacity:0; transform: translateY(25px);} to {opacity:1; transform: translateY(0);} }

/* Título do serviço */
.service-item h4 {
    color: #151515;
    font-size: clamp(1.15rem,1.4rem,1.4rem);
    margin: 0 0 .85rem 0;
    font-weight: 600;
    letter-spacing: .4px;
    position: relative;
}

.service-item h4::after {
    content: '';
    display: block;
    width: 42px;
    height: 3px;
    margin: .65rem auto 0;
    background: linear-gradient(90deg,#1A1A1A,#3A3D40);
    border-radius: 2px;
    opacity: .15;
    transition: opacity .45s ease, transform .6s ease;
    transform: translateY(4px);
}

.service-item:hover h4::after,
.service-item:focus-within h4::after {
    opacity: .45;
    transform: translateY(0);
}

/* Preço / destaque */
.service-price {
    color: #222;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    letter-spacing: .3px;
    background: linear-gradient(120deg,#1E1E1E,#3C3F41);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Descrição */
.service-description {
    color: #474C52;
    line-height: 1.55;
    margin: 0;
    font-size: .92rem;
}

/* Nota final */
.services-note {
    text-align: center;
    color: #4B4F54;
    font-style: italic;
    line-height: 1.55;
    max-width: 780px;
    margin: 0 auto 1.5rem;
    font-size: .95rem;
}

/* ===================================
   FOOTER - DESIGN ELEGANTE
   =================================== */
.main-footer {
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 70px 0 0 0;
    margin-top: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4a843, transparent);
}

.footer-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

@media (max-width: 1100px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 500px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        align-items: center;
    }
}

.footer-section h4 {
    color: #d4a843 !important;
    font-size: 1.15rem;
    font-family: 'Playfair Display', serif;
    margin: 0 0 20px 0;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #d4a843;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0;
    color: #ffffff;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-contact-item span,
.footer-contact-item a {
    color: #ffffff;
}

.footer-contact-item:hover {
    color: #d4a843;
}

.footer-contact-item:hover span,
.footer-contact-item:hover a {
    color: #d4a843;
}

.footer-contact-item i {
    color: #d4a843;
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.footer-schedule {
    display: grid;
    gap: 10px;
}

.schedule-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item .day {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9rem;
}

.schedule-item .hours {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.footer-social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-color: transparent;
}

.footer-social-link.whatsapp:hover {
    background: #25D366;
    color: white;
}

.footer-social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.footer-social-link.facebook:hover {
    background: #1877f2;
    color: white;
}

.footer-email {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-email:hover {
    color: #d4a843;
}

.footer-location-link {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-location-link span {
    color: #ffffff;
}

.footer-location-link:hover,
.footer-location-link:hover span,
.footer-location-link:hover .footer-contact-item {
    color: #d4a843;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link::before {
    content: '›';
    color: #d4a843;
    font-weight: bold;
}

.footer-link:hover {
    color: #d4a843;
    padding-left: 5px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 50px;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left,
.footer-bottom-right {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.made-by-link {
    color: #d4a843;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.made-by-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Footer Responsivo */
@media (max-width: 768px) {
    .main-footer {
        padding: 50px 0 0 0;
    }
    
    .footer-content {
        padding: 0 25px;
        gap: 35px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 20px 25px;
    }
}

/* ===================================
   RESPONSIVIDADE
   =================================== */
@media (max-width: 768px) {
    .main-nav {
        padding: 0 15px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 0.85em;
        padding: 6px 12px;
    }
    
    .header-logo {
        width: 40px;
        height: 40px;
    }

    .hero-banner {
        height: 400px;
        padding-top: 60px;
    }
    
    .hero-banner-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-banner-content p {
        font-size: 1.1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }

    .booking-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 0 15px;
    }
    
    .nav-menu {
        gap: 10px;
    }
    
    .nav-link {
        font-size: 0.8em;
        padding: 5px 8px;
    }

    .hero-banner {
        height: 350px;
        padding-top: 50px;
    }
    
    .hero-banner-content h1 {
        font-size: 2rem;
    }
    
    .hero-banner-content p {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .booking-section {
        padding: 40px 20px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .social-booking {
        grid-template-columns: 1fr;
    }
}

/* Efeito máquina de escrever */
#typewriter-title::after {
    content: '|';
    animation: blink 1s infinite;
    color: #2c2c2c;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* ===============================
     SEÇÃO DE TRANSIÇÃO ENTRE SERVIÇOS E VÍDEO
     =============================== */
.transition-section {
    padding: 80px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

.transition-content {
    max-width: 800px;
    margin: 0 auto;
}

.transition-content h2 {
    font-size: 2.5rem;
    color: #1A1A1A;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.transition-content p {
    font-size: 1.2rem;
    color: #555555;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

/* ===============================
     EMBED FACEBOOK VÍDEO
     =============================== */
.social-media-highlight {
    max-width: 1200px;
    margin: 40px auto 90px;
    padding: 0 40px;
    display: flex;
    justify-content: center;
}

.fb-video-wrapper { width: 100%; }

.fb-video-responsive {
    position: relative; 
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 22px 55px -18px rgba(0,0,0,0.35), 0 8px 24px -8px rgba(0,0,0,0.25);
    background: transparent;
}

.fb-embed-frame {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}

.video-disclaimer {
    text-align: center;
    font-size: .65rem;
    color: #666;
    margin-top: 12px;
    letter-spacing: .5px;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 820px) {
    .social-media-highlight { padding: 0 24px; }
    .fb-video-responsive { border-radius: 22px; }
}

@media (max-width: 520px) {
    .fb-video-responsive { border-radius: 18px; }
    .video-disclaimer { font-size: .58rem; }
}

/* ===============================
   COOKIE BANNER
   =============================== */
.cookie-overlay {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    display: none;
    transition: opacity 0.4s ease;
}

.cookie-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.cookie-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    width: min(90vw, 420px);
    height: auto;
    min-height: 400px;
    max-height: min(90vh, 500px);
    background: rgba(10, 10, 10, 0.94);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 2.5rem;
    z-index: 1001;
    transform: translate(-50%, -50%) scale(0.92);
    box-shadow: 0 32px 68px -24px rgba(0, 0, 0, 0.65);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: none;
    transition: transform 0.45s ease, opacity 0.45s ease, visibility 0.45s ease;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cookie-banner.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.cookie-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(79,128,255,0.55) 45%, rgba(255,255,255,0.15) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
    pointer-events: none;
    transition: opacity 0.45s ease;
}

.cookie-banner.show::before {
    opacity: 1;
}

.cookie-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
    min-height: 350px;
}

.cookie-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
}

.cookie-logo {
    width: 92px;
    height: 92px;
    border-radius: 24px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 18px 36px -16px rgba(0, 0, 0, 0.55);
}

.cookie-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.cookie-lead {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.55;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.cookie-legal {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
    line-height: 1.5;
}

.cookie-link {
    color: #4A90E2;
    text-decoration: underline;
}

.cookie-link:hover {
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    gap: 0.9rem;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.cookie-btn.accept {
    background: linear-gradient(135deg, #4E8CFF 0%, #2F67FF 100%);
    color: #fff;
    box-shadow: 0 14px 30px -12px rgba(65, 120, 255, 0.65);
}

.cookie-btn.accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px -14px rgba(65, 120, 255, 0.7);
}

.cookie-btn.accept:focus-visible {
    outline: 2px solid rgba(79, 128, 255, 0.75);
    outline-offset: 3px;
}

.cookie-btn.decline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.cookie-btn.decline:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.45);
    outline-offset: 3px;
}

.cookie-warning {
    min-height: 1.5rem;
    font-size: 0.83rem;
    color: #f2a365;
    letter-spacing: 0.2px;
    margin: 0;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    max-width: 90%;
}

.cookie-warning.visible {
    opacity: 1;
    transform: translateY(0);
}

.cookie-banner.shake {
    animation: cookieShake 0.6s cubic-bezier(.36,.07,.19,.97);
}

@keyframes cookieShake {
    10%, 90% { transform: translate(-50%, -50%) translateX(-1px) scale(1); }
    20%, 80% { transform: translate(-50%, -50%) translateX(2px) scale(1); }
    30%, 50%, 70% { transform: translate(-50%, -50%) translateX(-4px) scale(1); }
    40%, 60% { transform: translate(-50%, -50%) translateX(4px) scale(1); }
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .cookie-banner {
        width: min(95vw, 340px);
        height: auto;
        min-height: 420px;
        max-height: min(95vh, 480px);
        padding: 2rem 1.8rem;
        border-radius: 22px;
    }

    .cookie-content {
        gap: 1.3rem;
        min-height: 320px;
    }

    .cookie-logo {
        width: 78px;
        height: 78px;
        border-radius: 20px;
    }

    .cookie-brand-name {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .cookie-lead {
        font-size: 0.9rem;
    }

    .cookie-legal {
        font-size: 0.82rem;
    }

    .cookie-buttons {
        gap: 0.8rem;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 0.85rem 1.5rem;
    }
}

html.cookie-lock-scroll,
body.cookie-lock-scroll {
    overflow: hidden;
    height: 100%;
    touch-action: none;
}

/* ===================================
   NOVOS ESTILOS PARA MARCAÇÕES
   =================================== */
.booking-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.booking-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.booking-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #6610f2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.booking-item:hover::before {
    transform: scaleX(1);
}

.booking-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.booking-item h4 {
    color: #2c2c2c !important;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
}

.booking-item p {
    color: #6c757d !important;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .booking-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .booking-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .booking-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .booking-cta-hero {
        margin: 30px 20px 40px;
        padding: 40px 30px;
    }
    
    .booking-hero-content h3 {
        font-size: 1.8rem;
    }
}