/* CSS Variables */
:root {
    --dark-blue: #002244;
    --dark-brown: #3F2A0E;
    --light-brown: #C8B595;
    --white: #FFFFFF;
    --menu-gradient: linear-gradient(to right, #1f4d0b 25%, #0b6b5a 50%, #0b5f8f 75%, #064a79 100%);
    --light-gray: #f4f4f4;
    --text-dark: #333333;
    --text-light: #666666;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.15);
    --shadow-button: 0 4px 15px rgba(0, 34, 68, 0.2);
    --shadow-button-hover: 0 6px 20px rgba(0, 34, 68, 0.3);
    --shadow-card-hover: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: linear-gradient(120deg, var(--dark-blue), var(--dark-brown), var(--light-brown), var(--white));
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    width: 100%;
    max-width: 100vw;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    25% { background-position: 50% 50%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 50%; }
    100% { background-position: 0% 50%; }
}

body.loaded {
    opacity: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* ================== NOVOS ESTILOS ADAPTADOS ================== */

/* Hero Section Nova */
.hero-section-new {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-brown) 50%, var(--light-brown) 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-content-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text-new h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text-new p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons-new {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-new {
    background: var(--light-brown);
    color: var(--dark-brown);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--light-brown);
}

.btn-primary-new:hover {
    background: transparent;
    color: var(--light-brown);
    transform: translateY(-2px);
}

.btn-secondary-new {
    background: transparent;
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.btn-secondary-new:hover {
    background: var(--white);
    color: var(--dark-brown);
    transform: translateY(-2px);
}

.hero-image-new {
    text-align: center;
}

.hero-image-new img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

/* Seção Como Funciona */
.como-funciona-section {
    background: var(--white);
    padding: 80px 0;
    text-align: center;
}

.como-funciona-section h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 10px;
}

.como-funciona-section h3 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.como-funciona-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* Seção Benefícios dos Nootrópicos */
.beneficios-nootropicos-section {
    background: linear-gradient(135deg, var(--light-brown) 0%, var(--white) 100%);
    padding: 80px 0;
    text-align: center;
}

.beneficios-nootropicos-section h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.beneficios-nootropicos-section p {
    font-size: 1.1rem;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* Seção Serviços */
.servicos-section {
    background: var(--white);
    padding: 80px 0;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.servico-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--light-brown) 0%, var(--white) 100%);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.servico-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.servico-icon {
    width: 80px;
    height: 80px;
    background: var(--dark-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.servico-icon i {
    font-size: 2rem;
    color: var(--light-brown);
}

.servico-item h4 {
    font-size: 1.3rem;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.servico-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Seção Estatísticas */
.estatisticas-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-brown) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.estatisticas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.estatistica-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--light-brown);
    margin-bottom: 10px;
}

.estatistica-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Seção Quem Somos */
.quem-somos-section {
    background: var(--white);
    padding: 80px 0;
}

.quem-somos-section h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    text-align: center;
    margin-bottom: 30px;
}

.quem-somos-section > .container > p {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.projeto-social {
    background: linear-gradient(135deg, var(--light-brown) 0%, var(--white) 100%);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.projeto-social h3 {
    font-size: 2rem;
    color: var(--dark-brown);
    margin-bottom: 20px;
    text-align: center;
}

.projeto-social > p {
    font-size: 1.1rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.8;
}

.projeto-beneficios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.projeto-beneficios .beneficio-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.projeto-beneficios .beneficio-item i {
    color: var(--dark-brown);
    font-size: 1.2rem;
}

.projeto-beneficios .beneficio-item span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Seção Produtos */
.produtos-section {
    background: linear-gradient(135deg, var(--light-brown) 0%, var(--white) 100%);
    padding: 80px 0;
    text-align: center;
}

.produtos-section h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.produtos-section > .container > p {
    font-size: 1.1rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.produto-card-new {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.produto-card-new:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.produto-card-new img {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.produto-card-new h3 {
    font-size: 1.5rem;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.produto-preco {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.produto-beneficios {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.produto-beneficios li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.produto-beneficios li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--dark-brown);
    font-weight: bold;
}

.btn-comprar {
    background: var(--dark-brown);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--dark-brown);
}

.btn-comprar:hover {
    background: transparent;
    color: var(--dark-brown);
    transform: translateY(-2px);
}

/* Seção Depoimentos */
.depoimentos-section {
    background: var(--white);
    padding: 80px 0;
    text-align: center;
}

.depoimentos-section h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.depoimentos-section > .container > p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.depoimento-card-new {
    background: linear-gradient(135deg, var(--light-brown) 0%, var(--white) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: left;
    transition: all 0.3s ease;
}

.depoimento-card-new:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.depoimento-data {
    color: var(--dark-blue);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.depoimento-card-new h4 {
    font-size: 1.3rem;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.depoimento-card-new p {
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
}

/* Seção Contato */
.contato-section-new {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-brown) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.contato-section-new h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contato-section-new > .container > p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
    opacity: 0.9;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.form-container-new {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

.form-group-new {
    margin-bottom: 20px;
    text-align: left;
}

.form-group-new label {
    display: block;
    color: var(--dark-brown);
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group-new input,
.form-group-new textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light-brown);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group-new input:focus,
.form-group-new textarea:focus {
    outline: none;
    border-color: var(--dark-brown);
    box-shadow: 0 0 0 3px rgba(63, 42, 14, 0.1);
}

.btn-enviar {
    background: var(--dark-brown);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-enviar:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.contato-info-new {
    text-align: left;
}

.contato-info-new h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--light-brown);
}

.beneficios-lista {
    display: grid;
    gap: 20px;
}

.beneficios-lista .beneficio-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.beneficios-lista .beneficio-item i {
    color: var(--light-brown);
    font-size: 1.5rem;
    width: 30px;
}

.beneficios-lista .beneficio-item span {
    color: var(--white);
    font-weight: 500;
}

/* Footer Novo */
.footer-new {
    background: var(--dark-brown);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col-new h4 {
    font-size: 1.3rem;
    color: var(--light-brown);
    margin-bottom: 20px;
}

.footer-col-new p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.footer-col-new ul li {
    margin-bottom: 10px;
}

.footer-col-new ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col-new ul li a:hover {
    color: var(--light-brown);
}

.horario-lista li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.social-links-new {
    display: flex;
    gap: 15px;
}

.social-links-new a {
    width: 40px;
    height: 40px;
    background: var(--light-brown);
    color: var(--dark-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links-new a:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.btn-email {
    background: var(--light-brown);
    color: var(--dark-brown);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-email:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.footer-bottom-new {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* WhatsApp Float Novo */
.whatsapp-float-new {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-hover);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-float-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: var(--white);
}

/* ================== Header Styles ================== */
.main-header {
    background: linear-gradient(90deg, var(--light-brown), var(--dark-brown));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 80px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
    position: relative;
    z-index: 998;
    width: 100%;
    box-sizing: border-box;
}

.main-header .logo img {
    height: 100px;
    width: auto;
    display: block;
}

.main-header .main-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.main-header .main-nav a,
.main-header .main-nav .contato-dropbtn {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--white);
    font-size: 1.1rem;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.main-header .main-nav a:hover,
.menu-contato-dropdown:hover .contato-dropbtn {
    color: var(--light-brown);
    border-bottom-color: var(--light-brown);
}

.menu-contato-dropdown {
    position: relative;
}

.contato-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background: var(--dark-blue);
    min-width: 180px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.10);
    z-index: 100;
    overflow: hidden;
}

.menu-contato-dropdown:hover .contato-dropdown-content,
.menu-contato-dropdown:focus-within .contato-dropdown-content {
    display: block;
}

.contato-dropdown-content a {
    color: var(--white);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
    border-bottom: none;
}

.contato-dropdown-content a:hover {
    background: var(--light-brown);
    color: var(--dark-blue);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1005;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(45deg, var(--dark-blue), var(--dark-brown));
    color: var(--white);
    padding: 10px 0;
    position: relative;
    z-index: 999;
    border-bottom: 2px solid var(--light-brown);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    overflow: hidden;
    min-height: 45px;
    display: flex;
    align-items: center;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.contact-info-top {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.contact-item-top {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item-top i {
    color: var(--light-brown);
    font-size: 1.1rem;
    min-width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.contact-item-top a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-top:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.contact-item-top a:hover {
    color: var(--light-brown);
}

.delivery-info-top {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(200, 181, 149, 0.2);
    padding: 10px 18px;
    border-radius: 25px;
    border: 1px solid rgba(200, 181, 149, 0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.delivery-info-top:hover {
    background: rgba(200, 181, 149, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.delivery-info-top i {
    color: var(--light-brown);
    font-size: 1.2rem;
    animation: pulse-delivery 2s infinite;
}

@keyframes pulse-delivery {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.delivery-text-top {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
}

.delivery-text-top strong {
    color: var(--light-brown);
    font-weight: 700;
}

/* Loading Spinner */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--light-gray);
    border-top: 3px solid var(--dark-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 900px) {
    .main-header {
        height: 70px;
        padding: 0 1rem;
        position: relative;
    }

    .main-header .logo img {
        height: 80px;
    }

    .mobile-menu-toggle {
        display: block;
        padding: 0.5rem;
        margin-right: 0.5rem;
        z-index: 1001;
        position: relative;
        background: none;
        border: none;
        color: var(--white);
        font-size: 1.5rem;
        cursor: pointer;
    }
  
    .main-header .main-nav {
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: var(--dark-brown);
        z-index: 1000;
        padding: 0;
        gap: 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        transition: all 0.3s ease;
        max-height: 0;
        overflow: hidden;
    }
  
    .main-header .main-nav.active {
        display: flex;
        max-height: 500px;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            max-height: 0;
            opacity: 0;
        }
        to {
            max-height: 500px;
            opacity: 1;
        }
    }
  
    .main-nav a, .main-nav .contato-dropbtn {
        text-align: center;
        font-size: 1.1rem;
        font-weight: 500;
        width: 100%;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(200, 181, 149, 0.15);
        margin-left: 0;
        color: var(--white);
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s ease;
    }
    
    .main-nav a:hover, .main-nav .contato-dropbtn:hover {
        background: rgba(200, 181, 149, 0.1);
    }
    
    .main-nav .menu-contato-dropdown {
        width: 100%;
    }
  
    .menu-contato-dropdown .contato-dropdown-content {
        position: static;
        display: none;
        box-shadow: none;
        background: rgba(0,0,0,0.4);
        border-radius: 0;
        width: 100%;
        border-bottom: 1px solid rgba(200, 181, 149, 0.15);
    }
    
    .menu-contato-dropdown .contato-dropdown-content.active {
        display: block;
    }
    
    .contato-dropdown-content a {
        padding: 0.8rem 1.5rem;
        border-color: rgba(200, 181, 149, 0.1);
        font-size: 1rem;
        text-align: center;
        justify-content: center;
    }

    /* Top Bar Mobile */
    .top-bar {
        padding: 8px 0;
        min-height: 50px;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .contact-info-top {
        gap: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    
    .contact-item-top {
        font-size: 0.85rem;
        white-space: nowrap;
        padding: 4px 8px;
    }
    
    .delivery-info-top {
        padding: 6px 14px;
        font-size: 0.85rem;
        border-radius: 20px;
    }
    
    .delivery-text-top {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 6px 0;
        min-height: 48px;
    }
    
    .top-bar-content {
        padding: 0 12px;
        gap: 8px;
    }
    
    .contact-info-top {
        gap: 1rem;
    }
    
    .contact-item-top {
        font-size: 0.8rem;
        padding: 3px 6px;
    }
    
    .delivery-info-top {
        padding: 5px 12px;
    }
    
    .delivery-text-top {
        font-size: 0.8rem;
    }
    
    .delivery-text-top strong {
        display: inline;
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 5px 0;
        border-bottom: 1px solid var(--light-brown);
        min-height: 45px;
    }
    
    .top-bar-content {
        gap: 8px;
        padding: 0 8px;
    }
    
    .contact-info-top {
        flex-direction: row;
        gap: 0.8rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-item-top {
        font-size: 0.75rem;
        gap: 5px;
        justify-content: center;
        padding: 2px 5px;
    }
    
    .contact-item-top i {
        font-size: 0.9rem;
        min-width: 14px;
    }
    
    .delivery-info-top {
        padding: 4px 10px;
        border-radius: 18px;
        gap: 6px;
    }
    
    .delivery-info-top i {
        font-size: 1rem;
    }
    
    .delivery-text-top {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .delivery-text-top strong {
        font-size: 0.75rem;
    }
}

/* Responsividade para as novas seções */
@media (max-width: 768px) {
    .hero-content-new {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text-new h1 {
        font-size: 2rem;
    }
    
    .hero-buttons-new {
        justify-content: center;
    }
    
    .contato-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .servicos-grid,
    .estatisticas-grid,
    .produtos-grid,
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
    
    .projeto-beneficios {
        grid-template-columns: 1fr;
    }
    
    .footer-content-new {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links-new {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text-new h1 {
        font-size: 1.8rem;
    }
    
    .btn-primary-new,
    .btn-secondary-new {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .servico-item,
    .produto-card-new,
    .depoimento-card-new {
        padding: 30px 20px;
    }
    
    .form-container-new {
        padding: 30px 20px;
    }
    
    .whatsapp-float-new {
        bottom: 20px;
        right: 20px;
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* ================== ESTILOS PROFISSIONAIS ================== */

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--dark-brown);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header h3 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* Como Funciona Section */
.como-funciona-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.como-funciona-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
}

.como-funciona-beneficios {
    display: grid;
    gap: 15px;
}

.como-funciona-beneficios .beneficio-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(200, 181, 149, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--dark-brown);
}

.como-funciona-beneficios .beneficio-item i {
    color: var(--dark-brown);
    font-size: 1.3rem;
    width: 25px;
}

.como-funciona-beneficios .beneficio-item span {
    color: var(--text-dark);
    font-weight: 500;
}

.como-funciona-image {
    text-align: center;
}

.como-funciona-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
}

/* Benefícios Grid */
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.beneficio-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(200, 181, 149, 0.1);
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--light-brown);
}

.beneficio-card .beneficio-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-brown), var(--dark-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.beneficio-card .beneficio-icon i {
    font-size: 2rem;
    color: var(--white);
}

.beneficio-card h4 {
    font-size: 1.4rem;
    color: var(--dark-brown);
    margin-bottom: 15px;
    font-weight: 600;
}

.beneficio-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Serviços Melhorados */
.servico-features {
    list-style: none;
    margin-top: 20px;
    padding: 0;
}

.servico-features li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

.servico-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--dark-brown);
    font-weight: bold;
    font-size: 1rem;
}

/* Produtos Melhorados */
.produto-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--dark-brown);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.produto-card-new {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(200, 181, 149, 0.1);
}

.produto-card-new:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--light-brown);
}

.produto-subtitle {
    color: var(--dark-blue);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.produto-descricao {
    margin: 20px 0;
    padding: 20px;
    background: rgba(200, 181, 149, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--light-brown);
}

.produto-descricao p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.produto-beneficios {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.produto-beneficios li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
}

.produto-beneficios li i {
    color: var(--dark-brown);
    font-size: 0.9rem;
    position: absolute;
    left: 0;
    top: 8px;
}

.produto-actions {
    display: flex;
    gap: 15px;
    flex-direction: column;
    margin-top: 25px;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid #25D366;
}

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

.produtos-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.info-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(200, 181, 149, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 1.2rem;
    color: var(--dark-brown);
    margin-bottom: 10px;
    font-weight: 600;
}

.info-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Responsividade para as melhorias */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header h3 {
        font-size: 1.5rem;
    }
    
    .como-funciona-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .produto-actions {
        flex-direction: column;
    }
    
    .produtos-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .beneficio-card,
    .produto-card-new,
    .info-card {
        padding: 25px 20px;
    }
    
    .produto-badge {
        top: 10px;
        right: 10px;
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}