:root {
    /* Cores */
    --color-primary: #0A1A2E;
    --color-gold-light: #FCE695;
    --color-gold-dark: #CE9723;
    --color-background: #F8F6ED;
    --color-dark: #121212;
    --color-accent: #A6B4C8;
    --color-beige: #F8F6ED;
    --color-leather: var(--color-gold-dark);
    --color-gray: #999999;
    
    /* Tipografia */
    --font-heading: 'Raleway', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-button: 'Barlow Semi Condensed', sans-serif;
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    
    /* Container */
    --container-width: 1200px;
    --container-padding: 1rem;
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--color-leather) #f8f8f8;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--color-dark);
    line-height: 1.6;
    width: 100%;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

/* Container */
.container {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    overflow-x: hidden;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.5px;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: 1px;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: 0.75px;
}

h3 {
    font-size: 1.75rem;
    letter-spacing: 0.5px;
}

p {
    margin-bottom: var(--spacing-sm);
    font-weight: 400;
}

/* Botões */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 2px;
    text-decoration: none;
    font-family: var(--font-button);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(90deg, var(--color-gold-light) 0%, var(--color-gold-dark) 100%);
    color: var(--color-primary);
    border: none;
}

.btn-primary:hover {
    background: var(--color-primary);
    color: var(--color-gold-light);
    border: 1px solid var(--color-gold-dark);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-primary:hover::after {
    transform: translateX(100%);
}

.btn-secondary {
    background: var(--color-background);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-gold-light);
    border: 1px solid var(--color-gold-dark);
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-secondary:hover::after {
    transform: translateX(100%);
}

/* Menu */
.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-dark);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.5rem 0 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    max-width: 100%;
}

.menu .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.logo-img {
    max-width: 120px;
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0.1rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-leather);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-align: center;
}

.logo:hover {
    transform: scale(1.05);
}

/* Menu escuro durante o scroll */
.menu-dark {
    background-color: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-dark .logo {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    background-image: 
        linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54 22c-1.8 0-4 1.6-4 4 0-1.8-1.6-4-4-4 2.4 0 4-1.2 4-4 0 2.4 1.2 4 4 4zm-18 0c-1.8 0-4 1.6-4 4 0-1.8-1.6-4-4-4 2.4 0 4-1.2 4-4 0 2.4 1.2 4 4 4zm-18 0c-1.8 0-4 1.6-4 4 0-1.8-1.6-4-4-4 2.4 0 4-1.2 4-4 0 2.4 1.2 4 4 4zm36 18c-1.8 0-4 1.6-4 4 0-1.8-1.6-4-4-4 2.4 0 4-1.2 4-4 0 2.4 1.2 4 4 4zm-18 0c-1.8 0-4 1.6-4 4 0-1.8-1.6-4-4-4 2.4 0 4-1.2 4-4 0 2.4 1.2 4 4 4zm-18 0c-1.8 0-4 1.6-4 4 0-1.8-1.6-4-4-4 2.4 0 4-1.2 4-4 0 2.4 1.2 4 4 4z' fill='%23222222' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    color: white;
    padding: var(--spacing-lg) 0;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(180, 180, 180, 0.12);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 90, 66, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.footer-logo-img {
    max-width: 140px;
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px #0008);
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.footer-info p {
    margin-bottom: 0;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--color-leather);
    transform: translateY(-3px);
}

.footer-copy {
    margin-top: var(--spacing-md);
    font-size: 0.85rem;
    opacity: 0.7;
    position: relative;
    padding-top: var(--spacing-md);
    width: 100%;
}

.footer-copy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
    
    .btn-primary, .btn-secondary {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

.whatsapp-float {
    position: fixed;
    right: 32px;
    bottom: 32px;
    z-index: 1200;
    background: #25d366;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    transition: background 0.3s, transform 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.08);
}

.scroll-top {
    position: fixed;
    right: 32px;
    bottom: 104px;
    z-index: 1200;
    background: rgba(34,34,34,0.92);
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, background 0.3s, transform 0.3s;
}

.scroll-top.show {
    opacity: 1;
    pointer-events: auto;
}

.scroll-top:hover {
    background: var(--color-leather);
    transform: scale(1.08);
}

@media (max-width: 600px) {
    .whatsapp-float, .scroll-top {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
        right: 15px;
    }
    
    .whatsapp-float {
        bottom: 15px;
    }
    
    .scroll-top {
        bottom: 70px;
    }

    h1 {
        font-size: 2rem;
        word-wrap: break-word;
    }
    
    h2 {
        font-size: 1.8rem;
        word-wrap: break-word;
    }
    
    h3 {
        font-size: 1.5rem;
        word-wrap: break-word;
    }

    .logo-img {
        max-width: 80px;
    }

    .footer-logo-img {
        max-width: 90px;
    }
}

/* Scrollbar moderna com cor primária */
::-webkit-scrollbar {
    width: 10px;
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--color-leather) 60%, #bfa084 100%);
    border-radius: 8px;
    border: 2px solid #f8f8f8;
    min-height: 40px;
    transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #bfa084 0%, var(--color-leather) 100%);
}

::-webkit-scrollbar-track {
    background: transparent;
}

/* O CSS da seção beneficios foi movido para css/beneficios.css */

/* Responsividade geral para evitar rolagem horizontal */
img {
    max-width: 100%;
    height: auto;
}

section {
    max-width: 100vw;
    overflow-x: hidden;
}

.logo-topo {
    display: none;
}

@media (max-width: 600px) {
    .logo-img {
        max-width: 110px;
    }
    .logo {
        font-size: 1.2rem;
    }
}

a {
    color: var(--color-accent);
} 