@import url('https://api.fontshare.com/v2/css?f[]=satoshi@1,2&display=swap');

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

body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow: hidden;
    height: 100vh;
    margin: 0;
    padding: 0;
}

/* Container de scroll horizontal */
.horizontal-scroll {
    display: flex;
    height: 100vh;
    overflow-x: scroll;
    overflow-y: hidden;
}

/* Esconde a scrollbar */
.horizontal-scroll::-webkit-scrollbar {
    display: none;
}

/* Cada seção ocupa 100vw */
section {
    min-width: 100vw;
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    position: relative;
}

/* Logo no canto superior esquerdo */
.logo-left {
    position: absolute;
    top: 40px;
    left: 90px;
    z-index: 100;
}

.logo-left img {
    height: 20px;
    width: auto;
}

/* Logo no canto superior direito */
.logo-right {
    position: absolute;
    top: 40px;
    right: 90px;
    z-index: 100;
}

.logo-right img {
    height: 20px;
    width: auto;
}

/* Tag vermelha no canto superior direito */
.tag {
    position: absolute;
    top: 40px;
    right: 60px;
    background: #E03C31;
    color: white;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* HOME SECTION */
#home {
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    justify-content: center;
    align-items: center;
}

/* Overlay escuro sobre o hero */
#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Garante que logos e frase fiquem acima do overlay */
#home .logo-left,
#home .logo-right,
#home .hero-tagline {
    position: absolute;
    z-index: 100;
}

/* Logos vermelhas nas seções claras */
.content-section .logo-left img,
.content-section .logo-right img,
.contact-section .logo-left img,
.contact-section .logo-right img,
.form-section .logo-left img,
.form-section .logo-right img {
    filter: brightness(0) saturate(100%) invert(28%) sepia(89%) saturate(2651%) hue-rotate(349deg) brightness(91%) contrast(89%);
}

/* Navegação fixa no rodapé */
nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(15px);
    padding: 20px 60px;
    display: flex;
    justify-content: center;
    gap: 80px;
    z-index: 1000;
    border-top: 1px solid rgba(240, 226, 213, 0.1);
    height: 90px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

/* Cores do menu por seção */
nav.nav-light a {
    color: #ffffff;
}

nav.nav-dark a {
    color: #E03C31;
}

/* Hover específico para cada modo */
nav.nav-light a:hover {
    color: #E03C31 !important;
}

nav.nav-dark a:hover {
    color: #000000 !important;
}

/* Frase central do Hero */
.hero-tagline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    z-index: 50;
}

.hero-tagline h2 {
    font-family: 'Satoshi', sans-serif;
    text-transform: uppercase;
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 300;
    color: #ffffff;
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin: 0;
}

/* CONTENT SECTIONS - O QUE NOS MOVE / AS IMERSÕES */
.content-section {
    background: #F8F8F8;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
}

/* Área do título */
.content-section h1 {
    height: 158px;
    display: flex;
    align-items: center;
    padding-left: 90px;
    margin: 0;
    margin-top: 90px;
    font-size: 64px;
    font-weight: 500;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

/* Container principal de 3 colunas */
.content-main {
    display: flex;
    gap: 80px;
    padding: 60px 90px 70px 90px;
    justify-content: flex-start;
    align-items: flex-start;
}

/* Colunas de texto com largura fixa */
.content-column {
    width: 350px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

/* Coluna do meio (imagem) em TODAS as seções de conteúdo */
.content-section .content-column:nth-child(2) {
    width: 450px !important;
    flex-shrink: 0 !important;
    align-self: flex-start !important;
}

/* Imagem da coluna central */
.content-column img {
    width: 100%;
    max-height: 450px;
    height: auto;
    object-fit: cover;
}

/* Texto nas colunas laterais */
.content-column p {
    font-size: 24px;
    line-height: 1.2;
    color: #333;
    margin-bottom: 20px;
}

/* Links dentro das colunas de conteúdo */
.content-column a {
    color: #000000;
    text-decoration: none;
    padding: 8px 16px;
    display: inline-block;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.content-column a:hover {
    color: #E03C31;
    border-color: #E03C31;
    border-radius: 4px;
}

/* Media queries para altura de tela */
@media (max-height: 800px) {
    .content-column img {
        max-height: 400px;
    }
}

@media (max-height: 700px) {
    .content-column img {
        max-height: 350px;
    }
}

/* FORMULÁRIO */
form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-section {
    background: #F8F8F8;
    padding: 0;
    display: flex;
    flex-direction: column;
    width: 100vw;
    flex-shrink: 0;
}

.form-container {
    padding-left: 180px;
    position: relative;
    z-index: 10;
}

.form-container h1 {
    height: 158px;
    display: flex;
    align-items: center;
    margin: 0;
    margin-top: 90px;
    padding: 0;
    font-size: 64px;
    font-weight: 500;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.form-content {
    display: flex;
    gap: 80px;
    padding: 60px 0 70px 0;
}

.form-left {
    flex: 1;
    max-width: 800px;
}

#status-formulario {
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    text-transform: uppercase;
    background-color: #E03C31;
    color: white;
}

.form-right {
    flex: 0 0 380px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 24px 28px;
    border: 2px solid #E03C31;
    background: #F8F8F8;
    font-size: 18px;
    font-family: inherit;
    color: #E03C31;
    border-radius: 8px;
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: #E03C31;
    background: white;
}

input::placeholder {
    color: #E03C31;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ESTILO DO BOTÃO ENVIAR */
.btn-enviar {
    width: 100%;
    padding: 24px 28px;
    background-color: #E03C31;
    color: #FFFFFF;
    border: 2px solid #E03C31;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-enviar:hover {
    background-color: transparent;
    color: #E03C31;
}

/* WRAPPER DO LINK (O QUE ENVOLVE A CAIXA) */
.whatsapp-link-wrapper {
    text-decoration: none;
    display: block;
    height: 100%;
    transition: all 0.3s ease;
}

/* WHATSAPP CTA BOX */
.whatsapp-box {
    border: 2px solid #E03C31;
    border-radius: 8px;
    padding: 60px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #F8F8F8;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.whatsapp-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.whatsapp-box h3 {
    font-size: 24px;
    font-weight: 600;
    color: #E03C31;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin: 0;
    transition: all 0.3s ease;
}

/* COMPORTAMENTO HOVER UNIFICADO */
.whatsapp-link-wrapper:hover .whatsapp-box {
    background-color: #E03C31;
}

.whatsapp-link-wrapper:hover .whatsapp-box h3 {
    color: #FFFFFF;
}

.whatsapp-link-wrapper:hover .whatsapp-icon {
    transform: scale(1.1);
    filter: brightness(0) invert(1);
}

/* CONTATO */
.contact-section {
    background: #F8F8F8;
    padding: 0;
    display: flex;
    flex-direction: column;
    width: 100vw;
    flex-shrink: 0;
}

.contact-container {
    max-width: 600px;
    margin: 0;
    padding-left: 180px;
    padding-top: 0;
    position: relative;
    z-index: 10;
}

.contact-container h1 {
    color: #000000;
    height: auto;
    display: flex;
    align-items: center;
    padding-left: 0;
    margin: 0;
    margin-top: 90px;
    margin-bottom: 0;
    padding-top: 60px;
    font-size: 64px;
    font-weight: 500;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 60px !important;
}

.info-block h3 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #666;
}

.info-block p {
    font-size: 32px;
    line-height: 1.2;
    color: #333;
}

.info-block a {
    color: #000000;
    text-decoration: none;
    font-size: 32px;
    transition: color 0.3s ease;
}

.info-block a:hover {
    color: #E03C31;
}

.whatsapp-cta {
    margin-top: 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: 2px solid #E03C31;
    color: #E03C31;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.whatsapp-cta:hover {
    background: #E03C31;
    color: white;
}

/* Esconde menu hambúrguer em desktop */
.menu-toggle {
    display: none;
}

/* MOBILE */

/* ========================================
   RESPONSIVE MOBILE - BREAKPOINT 480px
   ======================================== */

@media (max-width: 480px) {
    
    /* RESET DE SCROLL - Vertical no mobile */
    body {
        overflow: auto;
    }
    
    .horizontal-scroll {
        display: block;
        height: auto;
        overflow-x: visible;
        overflow-y: auto;
    }
    
    section {
        min-width: 100%;
        width: 100%;
        height: auto;
        min-height: 100vh;
        flex-shrink: 1;
    }
    
    /* LOGOS */
    .logo-left {
        top: 20px;
        left: 20px;
    }
    
    .logo-left img {
        height: 16px;
    }
    
    .logo-right {
        display: none; /* Esconde logo direita em mobile */
    }
    
    /* HERO */
    #home {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-tagline h2 {
        font-size: 32px;
        text-align: center;
    }
    
    /* NAVEGAÇÃO - Menu Hambúrguer */
    nav {
        position: fixed;
        bottom: auto;
        top: 0;
        left: 0;
        right: 0;
        height: auto;
        padding: 15px 20px;
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        background: rgba(248, 248, 248, 0.98);
        backdrop-filter: blur(20px);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        border-top: none;
        border-bottom: 1px solid rgba(224, 60, 49, 0.1);
        z-index: 999;
    }
    
    nav.open {
        transform: translateY(0);
    }
    
    nav a {
        width: 100%;
        padding: 15px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(224, 60, 49, 0.1);
        color: #E03C31;
    }
    
    nav a:last-child {
        border-bottom: none;
    }
    
    /* Botão Hambúrguer */
    .menu-toggle {
        position: fixed;
        top: 20px;
        right: 20px; /* MUDOU de 60px para 20px */
        z-index: 1000;
        width: 30px;
        height: 25px;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .menu-toggle span {
        width: 100%;
        height: 3px;
        background: #E03C31;
        transition: all 0.3s ease;
    }
    
    .menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    /* Hero - menu toggle branco */
    #home .menu-toggle span {
        background: #FFFFFF;
    }
    
    /* SEÇÕES DE CONTEÚDO */
    .content-section {
        padding-bottom: 60px;
    }
    
    .content-section h1 {
        height: auto;
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 80px;
        margin-bottom: 40px;
        font-size: 36px;
    }
    
    .content-main {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px 40px 20px;
    }
    
    .content-column {
        width: 100% !important;
    }
    
    .content-section .content-column:nth-child(2) {
        width: 100% !important;
        order: 2;
    }
    
    .content-column:nth-child(1) {
        order: 1;
    }
    
    .content-column:nth-child(3) {
        order: 3;
    }
    
    .content-column p {
        font-size: 18px;
        line-height: 1.4;
    }
    
    .content-column h3 {
        font-size: 14px;
        margin-top: 30px;
    }
    
    .content-column h3:first-child {
        margin-top: 0;
    }
    
    .content-column img {
        max-height: none;
        height: auto;
    }
    
    .content-column a {
        font-size: 16px;
    }
    
    /* FORMULÁRIO */
    .form-section {
        padding-bottom: 60px;
    }
    
    .form-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .form-container h1 {
        height: auto;
        margin-top: 80px;
        margin-bottom: 40px;
        font-size: 36px;
    }
    
    .form-content {
        flex-direction: column;
        gap: 40px;
        padding: 0;
    }
    
    .form-left {
        max-width: 100%;
    }
    
    .form-right {
        flex: 1;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"] {
        padding: 18px 20px;
        font-size: 16px;
    }
    
    input::placeholder {
        font-size: 16px;
    }
    
    .btn-enviar {
        padding: 18px 20px;
        font-size: 16px;
    }
    
    .whatsapp-box {
        padding: 40px 30px;
    }
    
    .whatsapp-box h3 {
        font-size: 20px;
    }
    
    /* CONTATO */
    .contact-section {
        padding-bottom: 60px;
    }
    
    .contact-container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .contact-container h1 {
        height: auto;
        margin-top: 80px;
        margin-bottom: 40px;
        font-size: 36px;
    }
    
    .contact-info {
        gap: 40px;
    }
    
    .info-block h3 {
        font-size: 12px;
    }
    
    .info-block p {
        font-size: 20px;
    }
    
    .info-block a {
        font-size: 20px;
    }
}