/* ========================================
   SEMANA DO CONSUMIDOR - SUERTE KIMONOS
   ======================================== */

/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #eee9e7;
    --dark: #000000;
    --white: #ffffff;
    --gray: #333333;
    --light-gray: #666666;
    --accent: #ff0000;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-strong: rgba(0, 0, 0, 0.2);
}

body {
    font-family: Arial, 'Arial MT Pro', sans-serif;
    background-color: var(--primary-bg);
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 40px 0;
    background-image: url('https://www.genspark.ai/api/files/s/eEBzveho');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(238, 233, 231, 0.75) 0%, 
        rgba(245, 241, 239, 0.70) 50%,
        rgba(238, 233, 231, 0.65) 100%
    );
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

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

/* Hero Left */
.hero-left {
    animation: fadeInLeft 0.8s ease-out;
}

.logo-header {
    margin-bottom: 30px;
    display: inline-block;
    background-color: #000000;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px var(--shadow-strong);
}

.brand-logo {
    width: 280px;
    height: auto;
    display: block;
}

.main-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 20px;
    color: var(--dark);
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}

.main-title .highlight {
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.main-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: var(--accent);
    opacity: 0.3;
    z-index: -1;
}

.subtitle {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--gray);
    text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
}

.subtitle strong {
    color: var(--accent);
    font-size: 1.8rem;
}

/* Benefits */
.benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px var(--shadow-strong);
}

.benefit-item .icon {
    font-size: 2rem;
}

.benefit-item p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray);
}

/* Hero Right - Form */
.hero-right {
    animation: fadeInRight 0.8s ease-out;
}

.form-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-strong);
    border: 3px solid var(--dark);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--dark);
    text-transform: uppercase;
}

.form-header p {
    color: var(--light-gray);
    font-size: 1rem;
}

/* Form Styles */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    padding: 15px;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
}

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

.form-group input.error {
    border-color: var(--accent);
}

.btn-submit {
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--white);
    background-color: var(--dark);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: var(--gray);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--shadow-strong);
}

.btn-submit:active {
    transform: translateY(0);
}

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

.form-footer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--light-gray);
    margin-top: 15px;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: 100px 0;
    background-color: #000000;
    color: var(--white);
}

.about-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
}

.about-text .intro {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.about-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.08);
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--white);
}

.feature p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products {
    padding: 100px 0;
    background-color: var(--primary-bg);
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark);
    text-transform: uppercase;
}

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

.product-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px var(--shadow-strong);
    border-color: var(--dark);
}

.product-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    color: var(--dark);
    transition: all 0.3s ease;
}

.product-icon svg {
    width: 100%;
    height: 100%;
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--accent);
}

.product-card h3 {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--dark);
}

.product-card p {
    font-size: 0.95rem;
    color: var(--light-gray);
    line-height: 1.6;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
    padding: 80px 0;
    background-color: var(--dark);
    color: var(--white);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-cta {
    display: inline-block;
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--dark);
    background-color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta:hover {
    background-color: var(--primary-bg);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 40px 0;
    background-color: var(--dark);
    color: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    width: 180px;
    height: auto;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-info {
    text-align: right;
}

.footer-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

/* ========================================
   MODAL
   ======================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--gray);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--dark);
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    margin: 0 auto 30px;
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.modal-content p {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.btn-close-modal {
    margin-top: 30px;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 900;
    color: var(--white);
    background-color: var(--dark);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-close-modal:hover {
    background-color: var(--gray);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablets */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left {
        text-align: center;
    }
    
    .logo-header {
        margin: 0 auto 30px;
    }
    
    .brand-logo {
        width: 240px;
    }

    .main-title {
        font-size: 3rem;
    }

    .benefits {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-info {
        text-align: center;
    }
    
    .footer-logo {
        width: 150px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .hero {
        min-height: auto;
        padding: 30px 0;
    }
    
    .logo-header {
        padding: 12px 15px;
    }
    
    .brand-logo {
        width: 200px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .subtitle strong {
        font-size: 1.5rem;
    }

    .form-card {
        padding: 30px 20px;
    }

    .form-header h2 {
        font-size: 1.5rem;
    }

    .about-text h2,
    .section-title,
    .section-title-dark {
        font-size: 2rem;
    }

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

    .cta h2 {
        font-size: 2rem;
    }

    .cta p {
        font-size: 1.1rem;
    }

    .modal-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .footer-logo {
        width: 140px;
    }
}
