/*
========================================
  Global & Fonts
========================================
*/

/* --- Tipografia Padronizada --- */
.heading-xl {
    font-family: 'Malinton', 'Inter', sans-serif;
    font-size: 3rem;
    line-height: 1.2;
    margin: 0 0 25px 0;
}

.heading-lg {
    font-family: 'Malinton', 'Inter', sans-serif;
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.heading-md {
    font-family: 'Malinton', 'Inter', sans-serif;
    font-size: 2rem;
    line-height: 1.3;
    margin: 0 0 15px 0;
}

.heading-sm {
    font-family: 'Malinton', 'Inter', sans-serif;
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 0 0 15px 0;
}

.text-lg {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
}

.text-md {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

.text-sm {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&display=swap');

/* Adicionar a regra @font-face para Malinton aqui quando os arquivos estiverem prontos */
@font-face {
    font-family: 'Malinton';
    src: url('./assets/fonts/malinton.woff2') format('woff2'),
         url('./assets/fonts/malinton.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Fallback para garantir que a fonte carregue */
@supports (font-display: swap) {
    @font-face {
        font-family: 'Malinton';
        src: url('./assets/fonts/malinton.woff2') format('woff2');
        font-weight: normal;
        font-style: normal;
        font-display: swap;
    }
}

:root {
    --black-color: #212121; /* Atualizado para #212121 */
    --orange-color: #DE5114; /* Sunset - Mantido */
    --light-color: #FFFCF7; /* Atualizado para Snow */
    --blue-color: #1472DE; /* Sea - Adicionado conforme Brand Book */
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--black-color);
    color: var(--black-color);
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 0; /* Remove padding-top para que sections fiquem coladas ao header */
}

/* Garante que não haja espaço entre header e conteúdo */
html, body {
    margin: 0 !important;
    padding: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Malinton', 'Clash Display','Roboto', sans-serif;
}

/*
========================================
  Layout & Helpers
========================================
*/

section {
    padding: 0; /* Remove padding vertical das seções */
    min-height: 600px;
    max-height: 600px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.theme-light {
    background-color: var(--light-color);
    color: var(--black-color);
    
}

.theme-dark {
    background-color: var(--black-color);
    color: var(--light-color);
}

/* Esta regra não é mais necessária, o estilo será no wrapper */



.content-wrapper {
    max-width: 80%; /* Largura máxima fixa para consistência */
    margin: 0 auto; /* Centraliza o wrapper */
    padding: 0 48px; /* Adiciona espaçamento interno */
    width: 100%;
    box-sizing: border-box;
}

/* --- Bordas Arredondadas (Utilidades) --- */
.rounded-bottom {
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
}

.rounded-top {
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
}

.text-highlight {
    color: var(--orange-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Malinton', sans-serif;
    font-size: 3rem;
    color: var(--light-color);
    margin: 0 0 20px 0;
}

.section-header h2 .highlight {
    color: var(--orange-color);
}

.section-header p {
    font-size: 1.1rem;
    color: #a0a0a0;
    margin: 0 auto;
}

/*
========================================
  Components
========================================
*/

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    box-sizing: border-box;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn i {
    margin-left: 8px;
}

.btn-primary {
    background-color: var(--orange-color);
    color: var(--light-color);
    border-color: var(--orange-color);
}

.btn-primary:hover {
    background-color: #c84a12;
    border-color: #c84a12;
}

.btn-secondary {
    background-color: transparent;
    color: var(--black-color);
    border-color: var(--black-color);
}

/*
.btn-secondary:hover {
    background-color: var(--black-color);
    color: var(--light-color);
}
*/

.btn-tertiary {
    background-color: var(--blue-color);
    color: var(--light-color);
    border-color: var(--blue-color);
}

.btn-tertiary:hover {
    background-color: #004494;
    border-color: #004494;
}

.btn-outline {
    background-color: transparent;
    color: var(--light-color);
    border: 2px solid var(--orange-color);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--orange-color);
    color: var(--light-color);
}

/*
========================================
  Header & Footer
========================================
*/

/* --- Header --- */
header {
    padding: 20px 0;
    background-color: var(--light-color); /* Cor padrão para a home */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    border: none;
    border-bottom: none;
}




.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

.logo img {
    height: 33px;
}

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

nav a {
    text-decoration: none;
    color: var(--black-color);
    font-weight: 500;
    font-size: 1.2rem;
    padding: 0;
    border-bottom: none;
    transition: color 0.3s ease;
}

nav a.active,
nav a:hover {
    color: var(--black-color);
    border-bottom: 2px solid var(--orange-color) !important;
}

/* --- Dropdown Menu --- */
nav ul li.dropdown {
    position: relative;
}

nav ul li.dropdown .dropdown-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

nav ul li.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 8px;
    padding: 6px 0;
    list-style: none;
    min-width: 200px;
    z-index: 1000;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    opacity: 1;
    backdrop-filter: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    padding: 8px 20px;
    display: block;
    transition: background-color 0.3s ease;
}


/* --- Header Theme --- */
/* Esconde o logo branco por padrão */
.logo .logo-light {
    display: none;
}

/* Regras para o tema escuro do header */
header.header-dark {
    background-color: var(--dark-color);
    border-bottom: none;
}

header.header-dark .logo .logo-dark {
    display: none; /* Esconde o logo escuro */
}

header.header-dark .logo .logo-light {
    display: block; /* Mostra o logo branco */
}

header.header-dark nav a {
    color: var(--light-color);
}

header.header-dark nav a:hover,
header.header-dark nav a.active {
        color: var(--light-color);
        border-bottom: 2px solid var(--orange-color);
}

header.header-dark .mobile-nav-toggle {
    color: var(--light-color);
}

/* Dropdown para tema dark */
header.header-dark .dropdown-menu {
    background-color: var(--black-color) !important;
    opacity: 1 !important;
    backdrop-filter: none !important;
    background: var(--black-color) !important;
}

header.header-dark .dropdown-menu li a {
    color: var(--light-color) !important;
}

header.header-dark .dropdown-menu a:hover {
    background-color: var(--light-gray-color) !important;
}

/* Força background sólido para dropdown dark em qualquer contexto */
.header-dark .dropdown-menu,
header.header-dark .dropdown-menu,
.dropdown-menu.header-dark {
    background: var(--black-color) !important;
    background-color: var(--black-color) !important;
    opacity: 1 !important;
    backdrop-filter: none !important;
}

/* Regras para o tema light do header */
header.header-light {
    background-color: var(--light-color);
    border-bottom: none;
}

header.header-light .logo .logo-dark {
    display: block; /* Mostra o logo escuro */
}

header.header-light .logo .logo-light {
    display: none; /* Esconde o logo branco */
}

header.header-light nav a {
    color: var(--dark-color);
    border-bottom: none;
}

header.header-light nav a:hover,
header.header-light nav a.active {
    color: var(--black-color);
    border-bottom: 2px solid var(--orange-color);
}

header.header-light .mobile-nav-toggle {
    color: var(--dark-color);
}

/* Dropdown para tema light */
header.header-light .dropdown-menu {
    background-color: var(--light-color) !important;
    opacity: 1 !important;
    backdrop-filter: none !important;
    background: var(--light-color) !important;
}

header.header-light .dropdown-menu li a {
    color: var(--dark-color) !important;
}

header.header-light .dropdown-menu a:hover {
    background-color: var(--gray-color) !important;
    border-bottom: 2px solid var(--orange-color);
}

/* Força background sólido para dropdown light em qualquer contexto */
.header-light .dropdown-menu,
header.header-light .dropdown-menu,
.dropdown-menu.header-light {
    background: var(--light-color) !important;
    background-color: var(--light-color) !important;
    opacity: 1 !important;
    backdrop-filter: none !important;
}

/*
  Correção para o header-dark no scroll
  Garante que o fundo permaneça preto e sólido, sobrepondo qualquer outra regra de transparência.
*/
header.header-dark.scrolled {
    background-color: var(--black-color) !important;
}

/*
  Correção para o header-light no scroll
  Garante que o fundo permaneça branco e sólido, sobrepondo qualquer outra regra de transparência.
*/
header.header-light.scrolled {
    background-color: var(--light-color) !important;
}

/* Remove qualquer linha horizontal do header em todos os contextos */
header,
.header-wrapper {
    border-bottom: none !important;
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
}

/* Garante que a primeira seção fique colada ao header */
section:first-of-type,
.hero,
.contact-section,
.branding-intro-section {
    margin-top: 0 !important;
    padding-top: 84px !important; /* Compensa a altura do header fixo */
}

/* --- Footer --- */
footer {
    background-color: var(--black-color);
    color: #a0a0a0;
    padding: 80px 0 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #3b3b3b;
}

.footer-logo-col {
    flex: 0 0 200px;
}

.footer-logo-col img {
    width: 100%;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-family: 'Malinton', sans-serif;
    color: var(--light-color);
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    text-decoration: none;
    color: #a0a0a0;
}

.newsletter-form {
    position: relative;
    margin-top: 20px;
}

.newsletter-form input {
    width: 100%;
    background-color: #2c2c2c;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 14px 50px 14px 15px;
    color: var(--light-color);
    box-sizing: border-box;
}

.newsletter-form input::placeholder {
    color: #888;
}

.newsletter-form button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--orange-color);
    border: none;
    color: var(--light-color);
    cursor: pointer;
    font-size: 1rem;
    border-radius: 6px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #c84a12;
}

.newsletter-message {
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.newsletter-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    opacity: 1;
}

.newsletter-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    color: #a0a0a0;
    margin: 0 15px;
    font-size: 1.4rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--orange-color);
}

.copyright {
    font-size: 0.9rem;
    color: #888;
}

/*
========================================
  Page: Home
========================================
*/

/* --- Hero Section --- */
.hero {
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    padding: 84px 0 60px 0; /* 84px top para compensar header fixo + 60px bottom */
    position: relative; /* Garante o empilhamento correto */
    z-index: 2; /* Coloca a hero na frente */
    margin-top: 0; /* Remove qualquer margin */
    /* max-height agora é herdado da regra 'section' global */
}

.hero-carousel {
    min-height: 600px;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-family: 'Malinton', 'Inter', sans-serif;
    font-size: 3rem;
    margin: 0 0 25px 0;
    line-height: 1.2;
}

.hero-text .highlight {
    color: var(--orange-color);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 550px;
    height: auto;
}

/*
========================================
  Media Queries (Responsividade)
========================================
*/

/* --- Mobile Navigation --- */
.mobile-nav-toggle {
    display: none;
}

/* Tablets e Desktops Menores */
@media (max-width: 1024px) {
    .footer-top {
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-col {
        flex-basis: calc(50% - 20px);
    }

    .testimonial-cards {
        flex-direction: column;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }
}

/* Celulares */
@media (max-width: 768px) {
    header {
        padding: 8px 0; /* Reduzido de 20px */
    }

    section:first-of-type,
    .hero,
    .contact-section,
    .branding-intro-section {
        padding-top: 72px !important; /* Ajustado para compensar o header menor */
    }

    .header-wrapper nav {
        display: none; /* Esconde a navegação por padrão */
    }

    .header-wrapper.nav-open nav {
        display: flex;
        position: fixed;
        inset: 0;
        background: rgba(255, 252, 247, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
    }

    .header-wrapper.nav-open nav ul {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .header-wrapper.nav-open nav a {
        font-size: 1.8rem;
        color: var(--black-color);
    }

    .header-wrapper.nav-open nav a:hover,
    .header-wrapper.nav-open nav a.active {
        color: var(--black-color);
        border-bottom: 2px solid var(--orange-color) !important;
    }

    /* Dropdown no mobile */
    .dropdown.submenu-open > .dropdown-menu {
        display: block;
        position: static;
        padding-left: 20px;
        border: none;
    }

    .dropdown.submenu-open > a .dropdown-icon {
        transform: rotate(180deg);
    }

    .dropdown-menu li a {
        color: var(--black-color);
        padding: 10px 20px;
        font-size: 1.5rem;
    }

    .dropdown-menu li a:hover {
        background-color: rgba(0,0,0,0.1);
    }

    /* Mostra o botão hamburger no mobile */
    .mobile-nav-toggle {
        display: block;
        background: transparent;
        border: none;
        color: var(--black-color);
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1000;
        padding: 0.5em;
        position: relative;
    }

    .mobile-nav-toggle .fa-times {
        display: none;
    }

    .header-wrapper.nav-open .mobile-nav-toggle {
        position: fixed;
        top: 20px;
        right: 20px;
        color: var(--black-color);
    }

    .header-wrapper.nav-open .mobile-nav-toggle .fa-bars {
        display: none;
    }

    .header-wrapper.nav-open .mobile-nav-toggle .fa-times {
        display: block;
    }

    /* Logo menor no mobile */
    .logo img {
        height: 30px;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }



    section {
        padding: 40px 0;
        min-height: auto;
        max-height: none;
    }

    .content-wrapper {
        width: 100%;
        padding: 0 24px; /* Aumentado para dar mais respiro */
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .section-header p {
        font-size: 1rem;
        max-width: 100%;
        word-wrap: break-word;
        hyphens: auto;
    }

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

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

/* --- Info Section --- */
.info-section {
    text-align: left;
    position: relative; /* Garante o empilhamento correto */
    z-index: 1; /* Coloca a info-section atrás da hero */
}

.section-subtitle {
    font-size: 1rem;
    color:var(--orange-color);
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.info-section h2 {
    font-family: 'Malinton', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--light-color);
    margin: 0 0 60px 0;
    line-height: 1.3;
    max-width: 90%;
}

.testimonial-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: #2c2c2c;
    border-radius: 12px;
    padding: 24px;
    flex-basis: 300px;
    flex-grow: 1;
    max-width: 350px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.author-info h4 {
    font-family: 'Malinton', sans-serif;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light-color);
}

.author-info span {
    font-size: 0.9rem;
    color: #a0a0a0;
}

.testimonial-quote {
    font-size: 1rem;
    color: #c0c0c0;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* --- Content Sections (Standardized) --- */
.content-section {
    padding: 80px 0;
}



.video-section {
    padding-bottom: 80px; /* Adiciona espaçamento inferior */
}

/* --- Content Layout Classes (Standardized) --- */
.content-container {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
}

.content-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-image img {
    max-width: 70%;
    width: 60%;
    height: auto;
    border-radius: 16px;
    object-fit: contain;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-family: 'Malinton', sans-serif;
    font-size: 2.5rem;
    color: var(--black-color);
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.content-text h3 {
    font-family: 'Malinton', sans-serif;
    font-size: 2rem;
    color: var(--black-color);
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.content-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Responsividade para Content Layout */
@media (max-width: 992px) {
    .content-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .content-text h2 {
        font-size: 2.2rem;
    }
    
    .content-text h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .content-text h2 {
        font-size: 2rem;
    }
    
    .content-text h3 {
        font-size: 1.6rem;
    }
    
    .content-text p {
        font-size: 1rem;
    }
    
    .content-image img {
        max-width: 95%;
        width: 95%;
    }
}



.video-placeholder {
    width: 100%;
    height: 500px;
    background-color: #e0e0e0; /* Cor de fundo do placeholder */
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.play-button {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--dark-color);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    position: absolute;
}

.play-button:hover {
    transform: scale(1.1);
    background-color: white;
}

.play-button i {
    width: 32px;
    height: 32px;
    color: var(--dark-color);
    fill: var(--dark-color);
    margin-left: 5px; /* Ajuste para centralizar o ícone de play */
}

/* --- Process Section --- */
.process-section {
    padding: 80px 0;
}

.process-section .section-header h2 {
    color: var(--black-color);
}

.process-section .section-header p {
    color: #555;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.process-step {
    background-color: var(--light-color) !important;
    border: 1px solid var(--orange-color);
    border-radius: 20px;
    padding: 25px 20px;
    text-align: left;
    color: var(--black-color) !important;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.step-number {
    background-color: var(--orange-color);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Malinton', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.2rem;
    color: var(--orange-color) !important;
    margin: 0 0 8px 0;
}

.process-step p {
    color: var(--black-color) !important;
    font-weight: 400;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5;
    flex-grow: 1;
}

/* Responsividade para Process Section */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .process-step {
        padding: 25px 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .process-step h3 {
        font-size: 1.2rem;
    }
}

/* --- Voice Tone Section --- */
.voice-tone-section {
    padding: 80px 0;
}

.voice-tone-section .section-header h2 {
    color: var(--black-color);
}

.voice-tone-section .section-header p {
    color: #555;
}

.voice-tone-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 60px;
}

.voice-tone-text {
    flex: 1;
}

.voice-tone-text h3 {
    font-family: 'Malinton', sans-serif;
    font-size: 2rem;
    color: var(--black-color);
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.voice-tone-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.voice-tone-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--black-color);
    font-size: 1rem;
}

.benefit-item i {
    color: var(--orange-color);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.benefit-item svg {
    stroke: var(--orange-color) !important;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.voice-tone-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.voice-tone-image img {
    max-width: 90%;
    width: 90%;
    height: auto;
    border-radius: 16px;
    object-fit: contain;
}

/* Responsividade para Voice Tone Section */
@media (max-width: 992px) {
    .voice-tone-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .voice-tone-text h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .voice-tone-text h3 {
        font-size: 1.6rem;
    }
    
    .voice-tone-text p {
        font-size: 1rem;
    }
    
    .benefit-item {
        font-size: 0.95rem;
    }
    
    .content-image img {
        max-width: 95%;
        width: 95%;
    }
}

/* --- Portfolio Section --- */
.portfolio-section {
    padding: 120px 0 260px 0;
}

.portfolio-header h3 {
    font-family: 'Malinton', sans-serif;
    font-size: 1.5rem;
    color: var(--light-color);
    margin: 0 0 20px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 180px 190px 190px;
    gap: 20px;
    margin-bottom: 40px;
}

.grid-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

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

.item-1 { grid-column: 1; grid-row: 1; }
.item-2 { grid-column: 2; grid-row: 1; }
.item-3 { grid-column: 3; grid-row: 1 / 3; }
.item-4 { grid-column: 1; grid-row: 2 / 4; }
.item-5 { grid-column: 2; grid-row: 2; }
.item-6 { grid-column: 2; grid-row: 3; }
.item-7 { grid-column: 3; grid-row: 3; }




/* --- Services Section --- */
.services-section {
    min-height: auto; /* Permite que a seção cresça com o conteúdo */
    max-height: none;
    padding: 100px 0;
}

.services-section .section-header h2 {
    color: var(--black-color);
}

.services-section .section-header p {
    color: var(--black-color);
}

.services-section .section-header h2 .highlight {
    color: var(--orange-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background-color: var(--light-color) !important; /* DEBUG: Forçando o fundo branco para teste de especificidade */
    border: 1px solid var(--orange-color);
    border-radius: 20px;
    padding: 36px;
    text-align: left;
    color: var(--black-color) !important; /* Define a cor padrão do texto do card */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
}

.service-card:hover {
    
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.service-icon {
    background-color: var(--orange-color);
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.service-icon i {
    color: #fff;
    width: 32px;
    height: 32px;
}

.service-card h3 {
    font-size: 1.35rem;
    color: var(--orange-color) !important;
    margin: 0 0 10px 0;
}

.service-card .service-subtitle {
    color: var(--black-color) !important;
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.service-card ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--black-color) !important;
}

.service-card ul li svg { /* Alvo direto no SVG gerado pelo Lucide */
    stroke: var(--orange-color) !important;
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

.service-card .btn {
    width: 100%;
    margin-top: auto;
    padding: 15px 20px;
    position: relative;
    z-index: 2;
}

/* --- Product Showcase --- */
.product-showcase {
    padding: 80px 0;
    overflow: hidden;
    background-color: var(--black-color);
    --background-image: radial-gradient(at 1% 1%, hsl(219, 67%, 13%) 0px, transparent 50%), radial-gradient(at 99% 99%, hsl(219, 67%, 13%) 0px, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    position: relative;
}

.product-showcase .btn-tertiary {
    background-color: var(--blue-color);
    color: #ffffff;
    border-color: var(--blue-color);
    box-shadow: 0 4px 15px rgba(0, 82, 174, 0.4);
}

.product-showcase .btn-tertiary:hover {
    background-color: #0066cc;
    border-color: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 82, 174, 0.5);
}

.product-showcase-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.product-showcase-text {
    flex: 1;
    max-width: 480px;
}

.product-showcase-text h2 {
    font-family: 'Malinton', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: inherit; /* Herda a cor do tema pai */
    margin-top: 0;
    margin-bottom: 25px;
}

.product-showcase-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #d4d4d4;
}

.product-showcase-text .btn {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #d4d4d4;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.btn-plugin:hover {
    background-color: var(--orange-color);
}

.product-showcase-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-showcase-image img {
    max-width: 90%;
    width: 90%;
    height: auto;
    border-radius: 16px;
    object-fit: contain;
}

@media (max-width: 992px) {
    .product-showcase-container {
        flex-direction: column;
        text-align: center;
    }

    .product-showcase-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .product-showcase {
        padding: 80px 20px;
    }

    .product-showcase-text h2 {
        font-size: 2.8rem;
    }
}

/* --- CTA Section --- */
.cta-section {
    text-align: center;
}

.cta-section h2 {
    font-family: 'Malinton', sans-serif;
    font-size: 3rem;
    color: var(--light-color);
    margin: 0 0 20px;
}

.cta-section h2 .highlight {
    color: var(--orange-color);
}

.cta-section p {
    font-size: 1.2rem;
    color: #c0c0c0;
    margin: 0 0 40px;
}

/*
========================================
  Page: Contact
========================================
*/
.contact-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 84px 0 120px 0; /* 84px top para compensar header fixo + 120px bottom (igual ao hero) */
    margin-top: 0; /* Remove qualquer margin */
    min-height: 100vh; /* Garante altura mínima igual ao hero */
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 0 32px;
}

.contact-text {
    flex-basis: 35%;
    max-width: 35%;
}

.contact-direct p {
    font-weight: 600;
    margin-bottom: 15px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--orange-color);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #c84a12;
    transform: translateY(-2px);
}

.contact-form {
    flex-basis: 60%;
    max-width: 60%;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--black-color) !important;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--orange-color);
    box-shadow: 0 0 0 3px rgba(222, 81, 20, 0.2);
}

.services-group label {
    margin-bottom: 15px;
}

.services-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.service-option {
    display: flex;
    align-items: center;
}

.service-option input[type="checkbox"] {
    display: none;
}

.service-option label {
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 400;
}

.service-option input[type="checkbox"]:checked + label {
    background-color: var(--orange-color);
    color: white;
    border-color: var(--orange-color);
}

.char-count {
    text-align: right;
    font-size: 0.9rem;
    color: #777;
    margin-top: 5px;
}

.contact-form .btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*
========================================
  Media Queries
========================================
*/
@media (max-width: 992px) {
    .content-wrapper {
        max-width: 95%;
    }

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .item-1, .item-2, .item-3, .item-4, .item-5, .item-6, .item-7 {
        grid-column: auto;
        grid-row: auto;
    }



    .contact-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 16px;
    }

    .contact-text, .contact-form {
        max-width: 100%;
        flex-basis: auto;
    }

    .contact-text {
        text-align: center;
    }

    .contact-form {
        margin-left: 0;
    }

    .footer-top {
        flex-wrap: wrap;
    }

    .footer-logo-col {
        flex-basis: 100%;
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-col {
        flex-basis: calc(50% - 20px);
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
        .mission-vision-container,
    .origin-story-container {
        flex-direction: column;
        text-align: center;
    }

    .container {
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
    }

    .header-wrapper {
        flex-direction: row;
        gap: 15px;
        align-items: center;
        justify-content: space-between;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 10px;
    }

    .hero {
        padding: 40px 0;
        min-height: auto;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-image img {
        max-width: 100%;
        height: auto;
    }

    .info-section h2, .cta-section h2 {
        font-size: 2.2rem;
    }

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

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col {
        flex-basis: 100%;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .content-wrapper {
        padding: 0 10px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .info-section h2, .cta-section h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 20px;
    }
}


/* --- Portfolio Section --- */
.portfolio-section .section-header h3 {
    color: var(--black-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Malinton', sans-serif;
    font-size: 3rem;
    color: var(--light-color);
    margin: 0 0 5px 0;
}

.section-header h2 .highlight {
    color: var(--orange-color);
}

.section-header p {
    font-size: 1.1rem;
    color: #a0a0a0;
    white-space: normal;
    word-wrap: break-word;
    hyphens: auto;
}

.portfolio-section .section-header {
    text-align: left;
    margin-top: 120px;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #2c2c2c;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.service-icon {
    background-color: var(--orange-color);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--light-color);
}

.service-card h3 {
    font-family: 'Malinton', sans-serif;
    font-size: 1.5rem;
    margin: 0 0 10px 0;
    color: var(--light-color);
}

.service-card .service-subtitle {
    color: #a0a0a0;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.service-card ul li {
    color: #c0c0c0;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.service-card ul li i {
    color: var(--orange-color);
    margin-right: 10px;
}

/* Outline Button */
.btn-outline {
    background-color: transparent;
    color: var(--light-color);
    border-color: var(--orange-color);
}

.btn-outline:hover {
    background-color: var(--orange-color);
    color: var(--light-color);
}

.service-card .btn {
    display: block;
    width: 100%;
    margin-top: auto;
}

/* --- CTA Section --- */
.cta-section {
    background-color: var(--black-color);
    text-align: center;
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-section h2 {
    font-family: 'Malinton', sans-serif;
    font-size: 3rem;
    color: var(--light-color);
    margin: 0 auto 20px;
    font-weight: 700;
    max-width: 650px;
    line-height: 1.3;
}

.cta-section .highlight {
    color: var(--orange-color);
}

.cta-section p {
    font-size: 1.2rem;
    color: #c0c0c0;
    margin: 0 0 40px;
}

/*
========================================
  Page: Contact
========================================
*/
.contact-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    min-height: 750px;
    max-height: 750px;
    background-color: var(--light-color);
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
}

.contact-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    max-width: 100%;
    padding: 0 32px;
}

.contact-text {
    max-width: 35%;
    padding-top: 40px;
}

.contact-text h1 {
    font-family: 'Malinton', sans-serif;
    font-size: 3.3rem;
    margin-bottom: 20px;
    color: var(--black-color);
    line-height: 1.1;
}

.contact-text p {
    font-size: 1.2rem;
    color: var(--black-color);
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-direct {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-direct p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.email-link {
    color: var(--orange-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 20px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--orange-color);
    color: var(--light-color);
    font-weight: 600;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 8px;
    border: 2px solid var(--orange-color);
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    font-size: 1rem;
}

.whatsapp-btn:hover {
    background-color: #c84a12;
    transform: translateY(-2px);
}

.contact-form {
    flex: 1;
    background-color: var(--black-color);
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    max-width: 60%;
    margin-left: auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--light-color);
    font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.form-group select {
    width: 100%;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    padding-right: 40px;
}

.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange-color);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.services-group {
    margin-bottom: 30px;
}

.services-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.service-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-option:hover {
    border-color: var(--orange-color);
}

.service-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

.service-option label {
    margin: 0;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--light-color);
}

.form-group textarea {
    resize: none;
    max-width: 100%;
}

.char-count {
    display: flex;
    justify-content: flex-end;
    font-size: 0.8rem;
    color: #888;
    margin-top: 5px;
}

.contact-form .btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: var(--orange-color);
    color: var(--light-color);
    border: 2px solid var(--orange-color);
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 30px;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.contact-form .btn:hover {
    background-color: #c84a12;
    border-color: #c84a12;
    transform: translateY(-3px);
}

.contact-form .btn i {
    transition: transform 0.3s ease;
}

.contact-form .btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        width: 90%;
        align-items: center;
        padding: 0;
    }
    
    .contact-text {
        max-width: 100%;
        text-align: center;
        margin-bottom: 40px;
        padding-top: 20px;
    }
    
    .contact-form {
        margin-left: 0;
        max-width: 100%;
        width: 100%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
    }

    .cta-section h2 {
        font-size: 2.2rem;
    }
}



/* ===================================
   Contact Page Styles
   ==================================== */

.contact-section {
    background-color: var(--light-color);
    display: flex;
    align-items: center;
    padding: 84px 0 60px 0; /* 84px top para compensar header fixo + 60px bottom */
    position: relative; /* Garante o empilhamento correto */
    z-index: 2; /* Coloca a contact-section na frente */
    margin-top: 0; /* Remove qualquer margin */
    min-height: 100vh; /* Garante altura mínima igual ao hero */
}

.contact-container {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 5%;
    padding: 0 32px; /* User preference */
}

.contact-text {
    flex-basis: 25%; /* Reduzido para dar mais espaço ao formulário */
    max-width: 25%;   /* Reduzido para dar mais espaço ao formulário */
}

.contact-us-tag {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--light-color);
}

.contact-text h1 {
    font-family: 'Malinton', sans-serif;
    font-size: 3rem;
    line-height: 1.2;
    margin: 0 0 25px 0;
    color: var(--black-color);
}

.contact-text p {
    font-size: 1.1rem;
    color: #555; /* Cor para theme-light */
    line-height: 1.7;
    margin-bottom: 30px;
}

.manual-contact {
    margin-top: 30px;
    font-size: 1rem;
}

.manual-contact a {
    color: var(--orange-color);
    text-decoration: none;
}

.contact-form-wrapper {
    flex-basis: 70%; /* Aumentado para ocupar mais espaço */
    max-width: 70%;   /* Aumentado para ocupar mais espaço */
    margin-left: auto; /* Alinha à direita */
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0; /* Remove a margem da linha */
}

.form-group {
    flex: 1;
    margin-bottom: 12px; /* Adiciona o espaçamento aqui */
}

.form-group label {
    display: block;
    margin-bottom: 4px; /* Espaço entre a label e o input */
    font-weight: 500;
    color: var(--black-color);
}

/* ===================================
   Standard Form Input Style
   ==================================== */
.form-input {
    width: 100%;
    padding: 15px 20px;
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 6px;
    color: var(--black-color);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input::placeholder {
    color: #888;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.form-input:focus {
    outline: none;
    border-color: var(--orange-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.services-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.service-option {
    display: flex;
    align-items: center;
}

.service-option input[type="checkbox"] {
    display: none;
}

.service-option label {
    position: relative; /* Necessário para posicionar o checkbox customizado */
    padding-left: 35px; /* Espaço para o checkbox customizado */
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: var(--black-color);
    display: flex;
    align-items: center;
}

.service-option label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 6px;
    background-color: transparent;
    transition: background-color 0.2s, border-color 0.2s;
}

.service-option input[type="checkbox"]:checked + label {
    color: var(--light-color);
}

.service-option input[type="checkbox"]:checked + label::before {
    border-color: var(--orange-color);
}

.service-option input[type="checkbox"]:checked + label::after {
    content: '✓';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: white;
}

.char-count {
    text-align: right;
    font-size: 0.8rem;
    color: #888;
    margin-top: 5px;
}

.contact-form-wrapper .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive Styles for Contact Page */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        gap: 60px;
    }

    .contact-text,
    .contact-form-wrapper {
        max-width: 100%;
        flex-basis: 100%;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .contact-text h1 {
        font-size: 2.2rem; /* Reduzido para mobile */
    }
}

/* --- Branding Page --- */
.branding-intro-section {
    padding: 80px 0;
}

.branding-intro-section .section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--orange-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.branding-intro-section h2 {
    font-family: 'Malinton', 'Inter', sans-serif;
    font-size: 3rem;
    line-height: 1.2;
    margin: 0 0 60px 0;
}

.services-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-showcase-card {
    background-color: #2c2c2c;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--orange-color);
}

.service-showcase-card h3 {
    font-family: 'Malinton', 'Inter', sans-serif;
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 0 0 15px 0;
    color: var(--light-color);
}

.service-showcase-card p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #a0a0a0;
    line-height: 1.6;
}

/* --- Story Showcase Section --- */
.story-showcase {
    padding: 80px 0;
    background: var(--black-color);
    position: relative;
    overflow: hidden;
}

.story-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.story-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.story-header h2 {
    font-family: 'Malinton', sans-serif;
    font-size: 3rem;
    color: var(--light-color);
    margin: 0 0 20px;
}

.story-header h2 .highlight {
    color: var(--orange-color);
}

.story-header p {
    font-size: 1.2rem;
    color: #c0c0c0;
    margin: 0;
}

.story-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--orange-color), var(--blue-color));
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.timeline-marker {
    position: relative;
    z-index: 3;
    width: 100px;
    height: 100px;
    background: var(--black-color);
    border: 4px solid var(--orange-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.timeline-marker:hover {
    transform: scale(1.15);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.6);
}

.marker-icon {
    color: var(--orange-color);
    font-size: 2rem;
}

.timeline-content {
    text-align: center;
    padding: 24px;
    background-color: #2c2c2c;
    border-radius: 12px;
    border: 1px solid var(--orange-color);
    transition: all 0.3s ease;
    max-width: 350px;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.timeline-content h3 {
    font-family: 'Malinton', sans-serif;
    font-size: 1.5rem;
    color: var(--light-color);
    margin: 0 0 15px;
}

.timeline-content h4 {
    font-size: 1.2rem;
    color: var(--orange-color);
    margin: 0 0 10px;
    font-weight: 600;
}

.timeline-content p {
    font-size: 1rem;
    color: #a0a0a0;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .story-timeline {
        flex-direction: column;
        gap: 40px;
    }
    
    .story-timeline::before {
        display: none;
    }
    
    .timeline-marker {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .marker-icon {
        font-size: 1.5rem;
    }
    
    .timeline-content {
        max-width: 100%;
        padding: 30px 20px;
    }
    
    .story-header h2 {
        font-size: 2.5rem;
    }
}

/* --- Error 404 Page --- */
.error-section {
    padding: 120px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.error-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.error-illustration {
    flex: 1;
    text-align: center;
    position: relative;
}

.error-number {
    font-family: 'Malinton', 'Inter', sans-serif;
    font-size: 8rem;
    color: var(--orange-color);
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(222, 81, 20, 0.3);
}

.error-image {
    margin-top: 30px;
    text-align: center;
}

.error-image img {
    max-width: 345px;
    height: auto;
}

.error-content {
    flex: 1;
    max-width: 500px;
}

.error-content h1 {
    font-family: 'Malinton', 'Inter', sans-serif;
    font-size: 2.5rem;
    color: var(--black-color);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.error-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.error-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.error-actions .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
}

.error-suggestions h3 {
    font-family: 'Malinton', 'Inter', sans-serif;
    font-size: 1.3rem;
    color: var(--black-color);
    margin: 0 0 20px 0;
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.error-suggestions li {
    margin-bottom: 12px;
}

.error-suggestions a {
    color: var(--orange-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.error-suggestions a:hover {
    color: var(--black-color);
    transform: translateX(5px);
}

.error-suggestions a::before {
    content: '→';
    font-weight: bold;
    transition: transform 0.3s ease;
}

.error-suggestions a:hover::before {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .error-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .error-number {
        font-size: 6rem;
    }
    
    .error-image img {
        max-width: 288px;
    }
    
    .error-content h1 {
        font-size: 2rem;
    }
    
    .error-actions {
        justify-content: center;
    }
    
    .error-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .error-section {
        padding: 80px 0;
    }
    
    .error-number {
        font-size: 4rem;
    }
    
    .error-image img {
        max-width: 230px;
    }
    
    .error-content h1 {
        font-size: 1.8rem;
    }
    
    .error-content p {
        font-size: 1rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
        line-height: 1.5;
        white-space: normal;
        word-wrap: break-word;
        hyphens: auto;
    }
}

/* Formulário de contato - Mensagens */
.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
}

.form-message-success {
    background-color: #fff0e6; /* Laranja bem claro */
    color: #c84a12; /* Laranja escuro para o texto */
    border: 1px solid #fedacc; /* Laranja para a borda */
}

.form-message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    opacity: 1;
}

/* Botão de loading */
.btn-loading {
    display: none;
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Campos obrigatórios */
.form-group label[for*="fullname"]::after,
.form-group label[for*="email"]::after,
.form-group label[for*="message"]::after {
    content: " *";
    color: #ff6b35;
}

/* Contador de caracteres */
.char-count {
    text-align: right;
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.25rem;
}

/* Responsividade do formulário */
@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-row .form-group {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .form-message {
        margin-top: 0.75rem;
        padding: 0.75rem;
        font-size: 0.875rem;
    }
}

/* Responsividade para Branding Intro Section */
@media (max-width: 1024px) {
    .branding-intro-section h2 {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .services-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .service-showcase-card {
        padding: 20px;
    }
    
    .service-showcase-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .branding-intro-section {
        padding: 60px 0;
    }
    
    .branding-intro-section .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .branding-intro-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
        line-height: 1.3;
    }
    
    .services-showcase-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .service-showcase-card {
        padding: 16px;
    }
    
    .service-showcase-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .service-showcase-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .branding-intro-section {
        padding: 40px 0;
    }
    
    .branding-intro-section h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .service-showcase-card {
        padding: 14px;
    }
    
    .service-showcase-card h3 {
        font-size: 1.1rem;
    }
    
    .service-showcase-card p {
        font-size: 0.85rem;
    }
}

/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    overflow: hidden;
}

.hero-carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.hero-slide.active {
    display: block;
    opacity: 1;
}


/* Navegação do Carrossel */
.hero-carousel-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.carousel-prev,
.carousel-next {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--orange-color);
    font-size: 1rem;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--orange-color);
    color: var(--light-color);
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--orange-color);
    background: var(--light-color);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background: var(--orange-color);
    border-color: var(--orange-color);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .hero-carousel-nav {
        bottom: 20px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 35px;
        height: 35px;
    }
    
}

