html {
    scroll-behavior: smooth;
}

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

@font-face {
    font-family: 'BarzelStyle';
    src: url('cloister_black/CloisterBlack.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'BarzelStyle-manic';
    src: url('manic_germanic/ManicGermanic.otf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: #ffffff;
    background: linear-gradient(to bottom, #111111, #2a2a2a); /* Substituído bordô por cinza */
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    scroll-margin-top: 100px;
}

/* ===== HEADER E NAVEGAÇÃO ===== */
header {
    background: transparent;
    backdrop-filter: blur(0px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: all 0.5s ease;
    overflow: visible;
    height: 18vh;
}

header.scrolled {
    background: rgba(10, 10, 10, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important; /* Substituído bordô */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    transition: all 0.3s ease;
    position: relative;
}

/* Seletor de linguagem */
.header-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

header.show-nav .language-selector {
    opacity: 1;
}

.language-selector {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.language-current {
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1); /* Substituído bordô */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Substituído bordô */
    transition: all 0.6s ease-in-out;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1002;
}

.language-current:hover {
    background: rgba(255, 255, 255, 0.2); /* Substituído bordô */
}

.flag-icon {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.language-current:hover .flag-icon {
    transform: scale(1.1);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a; /* Cor escura */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Substituído bordô */
    border-radius: 15px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s ease-in-out;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 9999;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    color: #ffffff;
    position: relative;
    z-index: 10000;
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.2); /* Substituído bordô */
}

.language-option:hover .flag-icon {
    transform: scale(1.1);
}

.language-name {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.img-logo {
    margin-top: -3%;
    max-width: 100px;
    height: auto;
    transition: transform 0.3s ease;
}

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

/* Navegação - Uniformizada */
.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 3%;
}

nav {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

header.show-nav nav {
    opacity: 1;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

nav ul li {
    position: relative;
}

/* Estilo uniforme para todos os itens do menu */
nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1); /* Fundo sutil para todos */
}

nav ul li a:hover {
    color: #ffffff;
    background: rgba(223, 213, 213, 0.2); /* Hover uniforme */
    transform: translateY(-2px);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #ffffff; /* Linha branca */
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Removido o destaque especial dos últimos dois itens */
nav ul li:nth-last-child(2) a,
nav ul li:nth-last-child(1) a {
    color: #ffffff; /* Cor uniforme */
    font-weight: 500; /* Peso uniforme */
    font-size: 0.9rem; /* Tamanho uniforme */
}

/* Menu mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    color: #cccccc; /* Cinza claro */
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 15rem 0 8rem;
    background: 
        linear-gradient(to bottom, #000000 0%, transparent 100%),
        url('img/igor-banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    pointer-events: none;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: #444444; /* Substituído bordô por cinza */
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    position: relative;
    font-family: 'Playfair Display', serif;  
    margin-top: -6%;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9);
    z-index: 3;
}

.hero p {
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #ffffff;
    position: relative;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    z-index: 3;
    line-height: 1.4;
    font-weight: 100;
}

/* ===== BOTÕES ===== */
.cta-button-elegant {
    display: inline-block;
    padding: 1.3rem 3rem;
    background: #333333; /* Cinza escuro */
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Sombra neutra */
    text-transform: uppercase;
    font-size: 0.9rem;
}

.cta-button-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.cta-button-elegant:hover {
    background: #555555; /* Cinza médio */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.cta-button-elegant:hover::before {
    left: 100%;
}

.cta-button-elegant:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 8rem 0;
    background: #131313;
    position: relative;
    width: 100%;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.about-image {
    flex: 1;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.about-image:hover {
    transform: translateY(-5px);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    background: linear-gradient(to right, #ffffff, #cccccc); /* Gradiente cinza */
    opacity: 0.1;
    z-index: 1;
}

.img-about {
    width: 100%;
    height: 110%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover .img-about {
    transform: scale(1.05);
}

.about-content {
    flex: 1;
}

.about-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.about-content h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #cccccc; /* Cinza claro */
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.about-content h2:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    bottom: 0;
    left: 0;
    background: #888888; /* Cinza médio */
    border-radius: 2px;
}

.about-content p {
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* ===== TÍTULOS DAS SEÇÕES ===== */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 15px;
    color: #ffffff;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 2px;
    background: #ffffff; /* Linha branca */
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* ===== PRODUCTS SECTION ===== */
.products {
    padding: 7rem 0;
    background: linear-gradient(to bottom, #111111, #1a1a1a); /* Substituído bordô por cinza */
    position: relative;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.product-card {
    background: rgba(40, 40, 40, 0.7);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1); /* Borda cinza */
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.product-image {
    height: 220px;
    background: linear-gradient(45deg, #111111, #1a1a1a);
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05));
}

.product-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
}

.product-card p {
    color: #e0e0e0;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

/* ===== PROCESS SECTION ===== */
.process {
    padding: 7rem 0;
    background: linear-gradient(to bottom, #1a1a1a, #111111); /* Substituído bordô por cinza */
    color: #ffffff;
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: rgba(50, 50, 50, 0.6);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #888888, #aaaaaa); /* Gradiente cinza */
}

.process-step:hover {
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #cccccc; /* Cinza claro */
    line-height: 1;
    min-width: 60px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.step-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
}

.step-content p {
    color: #e0e0e0;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 7rem 0;
    background: linear-gradient(to right, rgba(60, 60, 60, 0.9), rgba(80, 80, 80, 0.8)), 
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23333"/><path d="M0,50 L100,50" stroke="%23555" stroke-width="0.5" stroke-opacity="0.2"/><path d="M50,0 L50,100" stroke="%23555" stroke-width="0.5" stroke-opacity="0.2"/></svg>');
    background-size: cover;
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #ffffff;
    font-size: 1.2rem;
}

/* Form Styles */
.container-form {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 4px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 2rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
}

.form-control, .form-select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 4px;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.form-control:focus, .form-select:focus {
    outline: none;
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.cta-button {
    background-color: #333333;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.cta-button:hover {
    background-color: #555555;
}

.loading, .error-message {
    display: none;
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
}

.loading {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.error-message {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ff9d9d;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

#obrigado {
    display: none;
    text-align: center;
}

#obrigado h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

#obrigado p {
    color: #ffffff;
}

/* ===== FOOTER ===== */
footer {
    padding: 5rem 0 2rem;
    background: linear-gradient(to bottom, #1a1a1a, #0a0a0a); /* Substituído bordô por cinza */
    color: #ffffff;
    position: relative;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #cccccc;
    position: relative;
    display: inline-block;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(to right, #cccccc, transparent);
}

.footer-col p {
    color: #e0e0e0;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
}

.footer-col ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #cccccc;
    transition: width 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-col ul li a:hover:after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #cccccc;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-links a:hover {
    background-color: #ffffff;
    color: #333333;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-links a.whatsapp:hover {
    background-color: #25D366;
    border-color: #25D366;
    color: white;
}

.copyright {
    text-align: center;
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #999999;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
        transition: left 0.3s ease;
        max-height: none !important;
        opacity: 1 !important;
    }
    
    nav ul.active {
        left: 0;
    }
    
    nav ul li {
        margin: 1.5rem 0;
    }
    
    nav ul li a {
        font-size: 1.1rem;
    }

    .header-left,
    .logo,
    .header-right {
        opacity: 1 !important;
        visibility: visible !important;
    }

    header.initial-state {
        background: transparent;
        backdrop-filter: blur(0px);
        border-bottom: 1px solid transparent;
    }

    header.scrolled nav {
        max-height: none;
        opacity: 1;
    }
            
    .hero h1 {
        font-size: 2.5rem;
        margin-top: 15%;
    }
            
    .about-container {
        flex-direction: column;
    }
            
    .footer-container {
        flex-direction: column;
    }
            
    .section-title {
        font-size: 2.2rem;
    }
            
    .img-logo {
        width: 400px;
        margin-top: -7%;
    }
}

/* Restante do CSS para outras seções permanece similar, apenas substituindo cores bordô por tons de cinza */
/* ===== NAVEGAÇÃO PARA 3 ITENS ===== */
.header-right nav ul {
    gap: 2rem;
}

.header-right nav ul li a {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.header-right nav ul li a:hover {
    background: rgba(44, 44, 44, 0.1);
    transform: translateY(-2px);
}

/* ===== SEÇÃO DE VÍDEOS REELS ===== */
.reels-section {
    padding: 7rem 0;
    background: linear-gradient(to bottom, #111111, #131313);
    position: relative;
    overflow: hidden;
}

.reels-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%,#131313 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, #131313 0%, transparent 50%);
    pointer-events: none;
}

.reels-section .section-title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
}

.reels-section .section-subtitle {
    text-align: center;
    color: #e0e0e0;
    margin-bottom: 3rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
}

.reels-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.reel-frame {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(100, 22, 22, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.reel-frame:hover {
    transform: translateY(-8px);
    border-color: rgba(100, 22, 22, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.reel-video {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.reel-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.reel-frame:hover .reel-video video {
    transform: scale(1.05);
}

.reel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reel-video:hover .reel-overlay {
    opacity: 1;
}

.reel-overlay i {
    font-size: 3rem;
    color: #ffffff;
    background: rgba(100, 22, 22, 0.8);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.reel-overlay i:hover {
    background: #161616;
    transform: scale(1.1);
}

.reel-caption {
    padding: 1.5rem;
    text-align: center;
}

.reel-caption h3 {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.reel-caption p {
    color: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===== FOOTER MODERNO ===== */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-brand p {
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(100, 22, 22, 0.3);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(100, 22, 22, 0.5);
}

.footer-social a:hover {
    background: #641616;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(100, 22, 22, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #641616;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.footer-column ul li a:hover {
    color: #4d4c4c;
    padding-left: 5px;
}

.contact-info p {
    color: #e0e0e0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.contact-info i {
    color: #641616;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(100, 22, 22, 0.3);
    border-bottom: 1px solid rgba(100, 22, 22, 0.3);
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.footer-newsletter {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.footer-newsletter h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.footer-newsletter p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(100, 22, 22, 0.3);
    background: rgba(30, 30, 30, 0.7);
    color: #ffffff;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #641616;
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: #641616;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.newsletter-form button:hover {
    background: #7c0711;
    transform: translateY(-2px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    color: #999;
    font-family: 'Montserrat', sans-serif;
}

.copyright a {
    color: #641616;
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

/* ===== BOTÃO WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-link i {
    font-size: 1.8rem;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(30, 30, 30, 0.9);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 22, 22, 0.3);
}

.whatsapp-link:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

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

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    /* Navegação mobile */
    .header-right nav ul {
        gap: 1rem;
    }
    
    .header-right nav ul li a {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
   
 
    
    /* Footer */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    /* WhatsApp */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-link {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {

    .footer-social {
        justify-content: center;
    }
}
/* ===== SEÇÃO DE VÍDEO REELS MODIFICADA ===== */
.reels-section {
    padding: 7rem 0;
    background: linear-gradient(to bottom, #111111, #1a1919);
    position: relative;
    overflow: hidden;
}

.reels-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(37, 36, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(10, 10, 10, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.reels-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Conteúdo de Texto na Esquerda */
.reels-content {
    padding-right: 2rem;
}

.reels-content .section-title {
    color: #ffffff;
    text-align: left;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.reels-text h3 {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.reels-text p {
    color: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.process-highlights {
    margin: 2.5rem 0;
}


.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 12px;
    border-left: 4px solid #641616;
    transition: all 0.3s ease;
}
.process-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
/* ===== CORREÇÕES ESPECÍFICAS ===== */

/* Centralizar botão na seção Processo */
.process-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Remover linha branca do hover do menu */
nav ul li a::after {
    display: none; /* Remove completamente a linha */
}

/* Ajustar hovers para tons de preto */
nav ul li a:hover {
    color: #ffffff;
    background: rgba(0, 0, 0, 0.3); /* Preto com transparência */
    transform: translateY(-2px);
}

.language-current:hover {
    background: rgba(0, 0, 0, 0.3); /* Preto com transparência */
}

.language-option:hover {
    background: rgba(0, 0, 0, 0.3); /* Preto com transparência */
}

/* Ajustar botões CTA */
.cta-button-elegant {
    display: inline-block;
    padding: 1.3rem 3rem;
    background: #161616; /* Preto sólido */
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    border: 2px solid #333333; /* Borda cinza escuro */
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.cta-button-elegant:hover {
    background: #333333; /* Cinza escuro no hover */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: #555555;
}

/* Ajustar cores dos destaques */
.highlight-item {
    border-left: 4px solid #333333; /* Cinza escuro */
}

.highlight-item:hover {
    background: rgba(0, 0, 0, 0.2); /* Preto com transparência */
}

.highlight-item i {
    color: #333333; /* Cinza escuro */
}

/* Ajustar números dos passos do processo */
.step-number {
    color: #333333; /* Cinza escuro */
}

/* Ajustar bordas das seções */
.product-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.process-step {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.process-step:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.process-step::before {
    background: linear-gradient(to bottom, #333333, #555555); /* Gradiente cinza */
}

/* Ajustar footer */
.footer-social a:hover {
    background: #000000; /* Preto sólido */
    transform: translateY(-3px);
}

/* Ajustar gradientes do body */
body {
    background: linear-gradient(to bottom, #111111, #1a1a1a); /* Tons de preto/cinza */
}

.products {
    background: linear-gradient(to bottom, #111111, #151515); /* Tons de preto/cinza */
}

.process {
    background: linear-gradient(to bottom, #151515, #111111); /* Tons de preto/cinza */
}

/* Ajustar sobre section */
.about-content h2:after {
    background: #333333; /* Cinza escuro */
}

/* Ajustar hero section */
.hero h1 {
    -webkit-text-stroke-color: #333333; /* Cinza escuro */
}
.highlight-item:hover {
    background: rgba(30, 30, 30, 0.7);
    transform: translateX(5px);
}

.highlight-item i {
    font-size: 1.5rem;
    color: #641616;
    margin-top: 0.2rem;
    min-width: 30px;
}

.highlight-item h4 {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.highlight-item p {
    color: #b0b0b0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.reels-content .cta-button-elegant {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
    background-color: #333333;
}

.reels-content .cta-button-elegant i {
    transition: transform 0.3s ease;
}

.reels-content .cta-button-elegant:hover i {
    transform: translateX(5px);
}

/* Container do Vídeo na Direita */
.reels-video-container {
    position: sticky;
    top: 120px;
}

.reel-frame {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(100, 22, 22, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    position: relative;
}

.reel-frame:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 22, 22, 0.7);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.reel-video {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #000;
}

.reel-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 60%,
        rgba(0, 0, 0, 0.8) 100%
    );
    pointer-events: none;
}
.reel-actions {
    position: absolute;
    right: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    pointer-events: all;
}

.reel-action-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    height: 4rem;
}

.reel-action-btn:hover {
    color: #641616;
    transform: scale(1.15);
}

.reel-action-btn i {
    font-size: 1.5rem;
    margin-bottom: 3px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.7));
}

.reel-action-btn span {
    font-size: 0.7rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.7));
}

.reel-caption {
    padding: 1.5rem;
    background: rgba(20, 20, 20, 0.9);
}

.reel-caption h3 {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.reel-caption p {
    color: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.reel-stats {
    display: flex;
    gap: 1.5rem;
    color: #b0b0b0;
    font-size: 0.8rem;
    font-family: 'Montserrat', sans-serif;
}

.reel-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.reel-stats i {
    font-size: 0.7rem;
    color: #641616;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 1024px) {
    .reels-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .reels-content {
        padding-right: 0;
        text-align: center;
    }
    
    .reels-content .section-title {
        text-align: center;
    }
    
    .reels-video-container {
        position: relative;
        top: 0;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .reel-video {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .reels-layout {
        gap: 2rem;
    }
    
    .reels-content .section-title {
        font-size: 2rem;
    }
    
    .reels-text h3 {
        font-size: 1.5rem;
    }
    
    .highlight-item {
        padding: 1rem;
    }
    
    .reel-video {
        height: 450px;
    }
    
    .reel-actions {
        bottom: 80px;
        gap: 1rem;
    }
    
    .reel-action-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .reels-video-container {
        max-width: 100%;
    }
    
    .reel-video {
        height: 400px;
    }
    
    .reel-frame {
        border-radius: 15px;
    }
    
    .process-highlights {
        margin: 2rem 0;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .highlight-item i {
        margin-top: 0;
    }
}
