/* ===== VARIÁVEIS DE CORES ===== */
:root {
    --primary-blue: #00017A;
    --primary-yellow: #FFD700;
    --text-white: #ffffff;
    --text-dark: #333333;
    --text-gray: #666666;
    --bg-light: #f8f9fa;
}

/* ===== RESET BÁSICO ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sora', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
    padding-top: 80px; /* ESPAÇO PARA O HEADER FIXO */
}

h1, h2, h3, h4 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-block;
    padding: 10px 24px; /* MANTIDO */
    border-radius: 8px; /* MANTIDO */
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
    font-size: 14px; /* AJUSTADO PARA O PADRÃO */
}

.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--primary-blue);
    border-color: var(--primary-yellow);
}

.btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border-color: transparent;
    text-decoration: underline;
    font-size: 14px; /* AJUSTADO */
}

.btn-secondary:hover {
    color: var(--primary-yellow);
}

/* ===== HEADER ===== */
header {
    background-color: var(--text-white);
    padding: 1rem 0; /* MANTIDO */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px; /* MANTIDO */
}

.logo img {
    height: 50px; /* MANTIDO */
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 20px; /* MANTIDO */
    color: var(--text-dark);
}

.main-nav ul {
    display: flex;
    gap: 1.5rem; /* MANTIDO */
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px; /* MANTIDO */
    padding: 8px 0; /* MANTIDO */
    position: relative;
}

.main-nav a.active {
    border-bottom: 2px solid var(--text-dark);
    font-weight: 600;
}

.main-nav a:hover {
    color: var(--primary-blue);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background-color: var(--primary-blue);
    color: var(--text-white);
    padding: 60px 0; /* MANTIDO */
    min-height: 500px; /* MANTIDO */
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem; /* MANTIDO */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    max-width: 500px; /* MANTIDO */
}

.hero-content h1 {
    font-size: 1.8rem; /* AJUSTADO - era 2.5rem */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.2rem; /* MANTIDO */
    color: var(--text-white);
}

.hero-content p {
    font-size: 1rem; /* MANTIDO */
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem; /* MANTIDO */
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    gap: 1.5rem; /* MANTIDO */
    align-items: center;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px; /* MANTIDO */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); /* MANTIDO */
}

/* ===== SEÇÃO PRINCÍPIOS COM GRADIENTE ===== */
.principles-gradient-section {
    background: linear-gradient(100deg, #00017A 0%, #00017A 30%, #FFBA31 100%);
    padding: 70px 0; /* MANTIDO */
    color: var(--text-white);
    text-align: center;
}

.principles-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.principles-gradient-section h2 {
    font-size: 1.8rem; /* MANTIDO */
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 3rem; /* MANTIDO */
    line-height: 1.3;
    max-width: 800px; /* MANTIDO */
    margin-left: auto;
    margin-right: auto;
}

.principles-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem; /* MANTIDO */
    flex-wrap: wrap;
}

.principle-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-white);
    transition: transform 0.3s ease;
}

.principle-icon-item:hover {
    transform: translateY(-5px);
}

.principle-icon-item i {
    font-size: 3rem; /* MANTIDO */
    margin-bottom: 1rem; /* MANTIDO */
    color: var(--text-white);
    opacity: 0.9;
}

.principle-icon-item span {
    font-size: 1.1rem; /* MANTIDO */
    font-weight: 600;
    font-family: 'Sora', sans-serif;
}

/* ===== PRODUCTS SECTION ===== */
.products-grid-section {
    padding: 60px 0; /* MANTIDO */
    background-color: #ffffff;
}

.products-grid-section .container {
    max-width: 1200px; /* MANTIDO */
    margin: 0 auto; /* MANTIDO */
    padding: 0 2rem; /* MANTIDO */
}

.products-header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem; /* MANTIDO */
}

.products-header-grid h2 {
    font-size: 1.8rem; /* MANTIDO */
    color: var(--text-dark); /* MANTIDO */
    margin-bottom: 0; /* MANTIDO */
    text-align: left; /* MANTIDO */
}

.link-more {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem; /* MANTIDO */
    text-decoration: none;
}

.link-more:hover {
    color: var(--primary-yellow);
    text-decoration: underline;
}

.product-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* MANTIDO */
    gap: 2rem; /* MANTIDO */
    max-width: 1200px; /* MANTIDO */
    margin: 0 auto; /* MANTIDO */
}

.product-card {
    background-color: var(--text-white);
    border-radius: 12px; /* MANTIDO */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); /* MANTIDO */
    padding: 1.2rem; /* MANTIDO */
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    border-radius: 8px; /* MANTIDO */
    margin-bottom: 1.2rem; /* MANTIDO */
    width: 100%;
    height: 180px; /* MANTIDO */
    object-fit: cover;
}

.product-card h3 {
    font-size: 1.1rem; /* MANTIDO */
    color: var(--text-dark);
    margin-bottom: 1.2rem; /* MANTIDO */
}

.btn-quote {
    background-color: var(--primary-yellow);
    color: var(--primary-blue);
    border-color: var(--primary-yellow);
    width: 100%;
    font-weight: 600;
    font-size: 13px; /* MANTIDO */
    padding: 10px 20px; /* MANTIDO */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-quote:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--primary-blue);
    color: var(--text-white);
    padding: 60px 0 30px 0; /* MANTIDO */
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem; /* MANTIDO */
}

.newsletter-signup {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem; /* MANTIDO */
    padding-bottom: 2rem; /* MANTIDO */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-signup span {
    font-size: 1.1rem; /* MANTIDO */
    font-weight: 600;
}

.btn-yellow {
    background-color: var(--primary-yellow);
    color: var(--primary-blue);
    border-color: var(--primary-yellow);
    padding: 10px 20px; /* MANTIDO */
    font-size: 0.9rem; /* MANTIDO */
    font-weight: 600;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* MANTIDO */
    gap: 2rem; /* MANTIDO */
    padding-bottom: 2rem; /* MANTIDO */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-col h4 {
    color: var(--primary-yellow);
    margin-bottom: 1rem; /* MANTIDO */
    font-size: 1.1rem; /* MANTIDO */
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 0.8rem; /* MANTIDO */
    display: flex;
    align-items: center;
}

.footer-col ul li i {
    margin-right: 0.8rem; /* MANTIDO */
    color: var(--primary-yellow);
}

.footer-col a {
    color: var(--text-white);
    font-size: 0.95rem; /* MANTIDO */
}

.footer-col a:hover {
    color: var(--primary-yellow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem; /* MANTIDO */
    font-size: 0.9rem; /* MANTIDO */
    flex-wrap: wrap;
    gap: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem; /* MANTIDO */
}

.social-icons a {
    color: var(--text-white);
    font-size: 1.5rem; /* MANTIDO */
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-yellow);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    width: 55px; /* MANTIDO */
    height: 55px; /* MANTIDO */
    bottom: 30px; /* MANTIDO */
    right: 30px; /* MANTIDO */
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    font-size: 24px; /* MANTIDO */
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); /* MANTIDO */
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem; /* MANTIDO */
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 1.6rem; /* AJUSTADO - era 2.2rem */
    }

    .hero-actions {
        justify-content: center;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem; /* MANTIDO */
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .products-header-grid {
        flex-direction: column;
        text-align: center;
        gap: 1rem; /* MANTIDO */
    }

    .principles-icons {
        gap: 3rem; /* MANTIDO */
    }
    
    .principles-gradient-section h2 {
        font-size: 1.6rem; /* MANTIDO */
        margin-bottom: 2.5rem; /* MANTIDO */
    }
    
    .principle-icon-item i {
        font-size: 2.5rem; /* MANTIDO */
    }
    
    .principle-icon-item span {
        font-size: 1rem; /* MANTIDO */
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 120px; /* MANTIDO */
    }
    
    .container {
        padding: 0 1rem;
    }

    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.4rem; /* AJUSTADO - era 1.8rem */
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem; /* MANTIDO */
    }

    .principles-icons {
        flex-direction: column;
        gap: 2.5rem; /* MANTIDO */
    }
    
    .principles-gradient-section {
        padding: 50px 0; /* MANTIDO */
    }
    
    .principles-gradient-section h2 {
        font-size: 1.4rem; /* MANTIDO */
        margin-bottom: 2rem; /* MANTIDO */
    }
    
    .principle-icon-item i {
        font-size: 2.2rem; /* MANTIDO */
    }
    
    .principle-icon-item span {
        font-size: 0.95rem; /* MANTIDO */
    }

    .newsletter-signup {
        flex-direction: column;
        gap: 1rem; /* MANTIDO */
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.2rem; /* AJUSTADO - era 1.5rem */
    }
    
    .hero-content p {
        font-size: 0.9rem; /* MANTIDO */
    }

    h2 {
        font-size: 1.5rem; /* MANTIDO */
    }

    .cta-top-section h3 {
        font-size: 1.4rem; /* MANTIDO */
    }

    .principles-container {
        padding: 0 1rem;
    }
    
    .principles-gradient-section h2 {
        font-size: 1.2rem; /* MANTIDO */
        margin-bottom: 1.5rem; /* MANTIDO */
    }
    
    .principle-icon-item i {
        font-size: 2rem; /* MANTIDO */
        margin-bottom: 0.8rem; /* MANTIDO */
    }
    
    .principle-icon-item span {
        font-size: 0.9rem; /* MANTIDO */
    }
}

/* Responsividade para produtos */
@media (max-width: 992px) {
    .product-cards-grid {
        grid-template-columns: repeat(2, 1fr); /* MANTIDO */
        max-width: 700px; /* MANTIDO */
    }
}

@media (max-width: 576px) {
    .product-cards-grid {
        grid-template-columns: 1fr; /* MANTIDO */
        max-width: 400px; /* MANTIDO */
    }
}
/* ===== SEÇÃO HISTÓRIA DA MARCA COM IMAGEM ===== */
.brand-story-section {
    background-color: #00017A;
    color: white;
    padding: 60px 0;
}

.brand-story-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 4rem;
}

.brand-story-content {
    flex: 1;
    max-width: 500px;
    text-align: left;
}

.brand-story-content h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Sora', sans-serif;
}

.brand-story-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.primary-button {
    background-color: #F5BD4A;
    color: #00017A;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Sora', sans-serif;
}

.primary-button:hover {
    background-color: #e0ac3c;
    transform: translateY(-2px);
}

.secondary-link {
    color: white;
    text-decoration: underline;
    font-size: 14px;
    transition: color 0.3s ease;
}

.secondary-link:hover {
    color: #F5BD4A;
}

.brand-story-image {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-story-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Responsividade */
@media (max-width: 992px) {
    .brand-story-container {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .brand-story-content {
        max-width: 600px;
    }

    .brand-story-content h1 {
        font-size: 1.6rem;
    }

    .actions {
        justify-content: center;
    }

    .brand-story-image {
        order: -1; /* Imagem primeiro no tablet */
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .brand-story-section {
        padding: 50px 0;
    }

    .brand-story-container {
        padding: 0 1rem;
        gap: 2rem;
    }

    .brand-story-content h1 {
        font-size: 1.4rem;
    }

    .brand-story-content p {
        font-size: 0.95rem;
    }

    .actions {
        flex-direction: column;
        gap: 1rem;
    }

    .brand-story-image img {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .brand-story-content h1 {
        font-size: 1.2rem;
    }

    .brand-story-content p {
        font-size: 0.9rem;
    }

    .brand-story-image img {
        max-height: 250px;
        border-radius: 8px;
    }
}