/* Importação de todos os componentes */
@import url('style.css');
@import url('components/header.css');
@import url('components/hero.css');
@import url('components/buttons.css');
@import url('components/whatsapp.css');
@import url('components/footer.css');

/* Variáveis globais */
:root {
    --green-primary: #00A651;
    --green-dark: #008C44;
    --yellow-primary: #FFD700;
    --yellow-dark: #FFC800;
    --white: #FFFFFF;
    --black: #333333;
    --gray: #666666;
    --light-gray: #F5F5F5;
}

/* Reset e estilos globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--green-primary);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--black);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* Seção de Cadastro */
.registration-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--green-primary), var(--yellow-primary));
}

.registration-box {
    text-align: center;
    color: var(--white);
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.registration-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.registration-box p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.registration-id-card {
    background: rgba(255,255,255,0.2);
    padding: 1rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 2rem;
}

.id-label {
    font-weight: normal;
    margin-right: 0.5rem;
}

.id-number {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--black);
    margin: 0 0.5rem;
}

.id-name {
    font-weight: bold;
}

/* Products Section */
.products-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,166,81,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay i {
    font-size: 3rem;
    color: var(--white);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--green-primary);
}

.product-info p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-features span {
    font-size: 0.85rem;
    color: var(--green-primary);
    background: rgba(0,166,81,0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.product-features i {
    margin-right: 0.3rem;
    font-size: 0.8rem;
}

/* Founder Section */
.founder-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.founder-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.founder-image img {
    width: 100%;
    height: auto;
    display: block;
}

.founder-quote {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 2rem;
    text-align: center;
}

.founder-quote i {
    color: var(--yellow-primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.founder-quote p {
    color: var(--white);
    font-size: 1.2rem;
    font-style: italic;
}

.founder-info h3 {
    font-size: 2rem;
    color: var(--green-primary);
    margin-bottom: 0.5rem;
}

.founder-title {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.founder-bio p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.founder-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.stat {
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--green-primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Business Section */
.business-section {
    padding: 5rem 0;
    background: var(--white);
}

.business-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.business-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: transform 0.3s;
}

.business-card:hover {
    transform: translateY(-5px);
}

.business-card i {
    font-size: 3rem;
    color: var(--green-primary);
    margin-bottom: 1rem;
}

.business-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.business-card p {
    color: var(--gray);
}

.business-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--green-primary), var(--yellow-primary));
    border-radius: 15px;
    color: var(--white);
}

.business-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .registration-box {
        padding: 2rem;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founder-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .business-content {
        grid-template-columns: 1fr;
    }
}