/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', 'Arial', sans-serif;
    line-height: 1.4;
    overflow-x: hidden;
}

/* Header */
.header {
    background: linear-gradient(135deg, #2ECC40 0%, #00A651 100%);
    padding: 15px 0;
    position: relative;
    z-index: 1000;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-btn {
    background: #2ECC40;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    border: 2px solid white;
    transition: all 0.3s ease;
    text-transform: none;
    font-family: 'Nunito', sans-serif;
}

.nav-btn:hover {
    background: white;
    color: #2ECC40;
}

.logo {
    height: 60px;
    width: auto;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2ECC40 0%, #00A651 100%);
    min-height: 80vh;
    position: relative;
    padding: 40px 0;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    min-height: 70vh;
}

.hero-left {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    background: #2ECC40;
    color: white;
    padding: 6px 18px;
    border-radius: 18px;
    display: inline-block;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 15px;
    border: 2px solid white;
    font-family: 'Nunito', sans-serif;
}

.hero-title {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 900;
    color: white;
    line-height: 0.85;
    margin-bottom: 15px;
    font-family: 'Fredoka One', sans-serif;
    text-shadow: 
        -4px -4px 0 #000,
        4px -4px 0 #000,
        -4px 4px 0 #000,
        4px 4px 0 #000,
        -3px -3px 0 #000,
        3px -3px 0 #000,
        -3px 3px 0 #000,
        3px 3px 0 #000;
}

.highlight-text {
    color: white;
}

.brasil-text {
    background: linear-gradient(45deg, #FFD700 0%, #FFA500 50%, #FF6B35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-image {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.4));
}

.product-image-small {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
}

.hero-banner {
    background: #2ECC40;
    padding: 15px 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
}

.banner-text {
    color: white;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Hero Second Section */
.hero-second {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-second-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-second-title {
    font-size: clamp(36px, 6vw, 64px);
    color: white;
    font-weight: 900;
    margin-bottom: 40px;
    text-shadow: 
        -3px -3px 0 #000,
        3px -3px 0 #000,
        -3px 3px 0 #000,
        3px 3px 0 #000;
}

.hero-images {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.hero-img-left, .hero-img-right {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

/* Coxinha Section */
.coxinha-section {
    background: #f5f5f5;
    padding: 80px 0;
}

.coxinha-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.coxinha-badge {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    min-width: 350px;
    position: relative;
}

.coxinha-badge h3 {
    font-size: 48px;
    color: white;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 
        -3px -3px 0 #000,
        3px -3px 0 #000,
        -3px 3px 0 #000,
        3px 3px 0 #000;
}

.coxinha-highlight {
    font-style: italic;
}

.coxinha-image {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

.coxinha-info {
    flex: 1;
}

.info-section {
    margin-bottom: 40px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-title {
    font-size: 48px;
    color: white;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 
        -3px -3px 0 #000,
        3px -3px 0 #000,
        -3px 3px 0 #000,
        3px 3px 0 #000;
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-title-simple {
    font-size: 48px;
    color: white;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 
        -3px -3px 0 #000,
        3px -3px 0 #000,
        -3px 3px 0 #000,
        3px 3px 0 #000;
}

.galinha-icons {
    display: flex;
    gap: 10px;
}

.galinha {
    width: 60px;
    height: auto;
}

.info-text {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 10px;
    font-weight: 400;
    font-family: Arial, sans-serif;
}

.info-text-italic {
    font-size: 14px;
    color: #666;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 8px;
    font-family: Arial, sans-serif;
}

/* Join Section */
.join-section {
    background: linear-gradient(135deg, #2ECC40 0%, #00A651 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.join-header {
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.join-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 
        -3px -3px 0 #000,
        3px -3px 0 #000,
        -3px 3px 0 #000,
        3px 3px 0 #000;
}

.join-subtitle {
    font-size: 20px;
    font-weight: 400;
    font-family: Arial, sans-serif;
    line-height: 1.4;
}

.join-badge {
    margin-bottom: 40px;
}

.mix-label {
    background: #2ECC40;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    border: 3px solid white;
    display: inline-block;
}

.products-showcase {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.product-showcase-img {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
    border-radius: 15px;
}

.products-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 400;
    font-family: Arial, sans-serif;
    line-height: 1.5;
    padding: 0 20px;
}

/* Advantages Section */
.advantages-section {
    background: #f5f5f5;
    padding: 80px 0;
}

.advantages-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.advantages-list {
    flex: 1;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.advantage-icon {
    width: 45px;
    height: 45px;
    background: #2ECC40;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.advantage-text {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    font-family: Arial, sans-serif;
}

.franchise-call {
    flex: 1;
    position: relative;
}

.franchise-box {
    background: linear-gradient(135deg, #2ECC40 0%, #00A651 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: left;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.franchise-title {
    font-size: 36px;
    color: white;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: 
        -3px -3px 0 #000,
        3px -3px 0 #000,
        -3px 3px 0 #000,
        3px 3px 0 #000;
}

.merilu-highlight {
    color: #FFD700;
}

.franchise-subtitle {
    font-size: 24px;
    color: white;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000;
}

.franchise-subtitle em {
    font-style: italic;
    font-weight: 900;
}

.franchise-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

/* Business Models */
.business-models {
    background: linear-gradient(135deg, #2ECC40 0%, #00A651 100%);
    padding: 80px 0;
    color: white;
}

.models-header {
    text-align: left;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.models-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 900;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 
        -3px -3px 0 #000,
        3px -3px 0 #000,
        -3px 3px 0 #000,
        3px 3px 0 #000;
}

.models-description {
    font-size: 20px;
    font-weight: 400;
    font-family: Arial, sans-serif;
    line-height: 1.4;
    text-shadow: 
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000;
}

.model-showcase {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.model-image {
    flex: 1;
}

.store-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.model-info {
    flex: 1;
    background: #2ECC40;
    padding: 40px;
    border-radius: 20px;
    border: 3px solid white;
}

.model-title {
    font-size: 36px;
    color: #FFD700;
    font-weight: 900;
    margin-bottom: 25px;
    text-shadow: 
        -3px -3px 0 #000,
        3px -3px 0 #000,
        -3px 3px 0 #000,
        3px 3px 0 #000;
}

.model-features {
    list-style: none;
    margin-bottom: 25px;
}

.model-features li {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    text-shadow: 
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000;
}

.model-features li:before {
    content: "•";
    color: white;
    font-size: 24px;
    font-weight: 900;
    position: absolute;
    left: 0;
}

.investment-label {
    font-size: 16px;
    color: white;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
    text-shadow: 
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000;
}

.investment-value {
    background: #000;
    color: white;
    font-size: 32px;
    font-weight: 900;
    padding: 15px 25px;
    border-radius: 15px;
    text-align: center;
    display: inline-block;
    width: 100%;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #2ECC40 0%, #00A651 100%);
    padding: 80px 0;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-form-container {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-title {
    background: #2ECC40;
    color: white;
    font-size: 32px;
    font-weight: 900;
    padding: 15px 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000;
}

.message {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 600;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 3px solid #ddd;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2ECC40;
    box-shadow: 0 0 0 3px rgba(46, 204, 64, 0.2);
}

.submit-btn {
    background: linear-gradient(135deg, #2ECC40 0%, #00A651 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 64, 0.4);
}

.contact-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.attendant-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

/* Footer */
.footer {
    background: #2ECC40;
    padding: 20px 0;
    overflow: hidden;
}

.footer-banner {
    overflow: hidden;
}

.footer-text {
    color: white;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .nav-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .logo {
        order: -1;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .product-container {
        flex-direction: column;
        align-items: center;
    }
    
    .product-image {
        width: 250px;
    }
    
    .product-image-small {
        width: 120px;
    }
    
    .hero-images {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-img-left, .hero-img-right {
        width: 250px;
        height: 250px;
    }
    
    .coxinha-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .coxinha-badge {
        min-width: auto;
        width: 100%;
    }
    
    .products-showcase {
        flex-direction: column;
        gap: 20px;
    }
    
    .product-showcase-img {
        width: 200px;
    }
    
    .advantages-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .model-showcase {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .banner-text, .footer-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-second-title {
        font-size: 28px;
    }
    
    .coxinha-badge h3 {
        font-size: 32px;
    }
    
    .info-title, .info-title-simple {
        font-size: 32px;
    }
    
    .join-title {
        font-size: 28px;
    }
    
    .models-title {
        font-size: 28px;
    }
    
    .franchise-title {
        font-size: 24px;
    }
    
    .model-title {
        font-size: 28px;
    }
    
    .contact-title {
        font-size: 24px;
    }
    
    .contact-form-container {
        padding: 25px;
    }
}
