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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Variáveis CSS */
:root {
    --primary-color: #8B0000;
    --secondary-color: #DC143C;
    --accent-color: #FF4500;
    --gold-color: #FFD700;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #8B0000 0%, #DC143C 50%, #FF4500 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 40px rgba(0,0,0,0.15);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.logo i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: var(--primary-color);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.track-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.track-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 3px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.promo-banner {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    padding: 0.5rem 0;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(220,20,60,0.1) 0%, transparent 70%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--text-dark);
}

.benefit-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.cta-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: var(--shadow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.cta-primary.large {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.badge i {
    color: var(--accent-color);
}

/* Product Showcase */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-showcase {
    position: relative;
    max-width: 400px;
}

.product-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    transition: transform 0.3s ease;
}

.product-img:hover {
    transform: scale(1.05);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    animation: float 3s ease-in-out infinite;
}

.floating-element i {
    color: var(--accent-color);
}

.element-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.element-2 {
    bottom: 30%;
    left: -15%;
    animation-delay: 1s;
}

.element-3 {
    top: 60%;
    right: -5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Diferencial Section */
.diferencial {
    background: var(--bg-light);
}

.diferencial-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.diferencial-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.diferencial-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.tech-feature:hover {
    transform: translateY(-5px);
}

.tech-feature i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.25rem;
}

.tech-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.tech-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Absorption Demo */
.absorption-demo {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.absorption-item {
    margin-bottom: 2rem;
}

.absorption-item:last-child {
    margin-bottom: 0;
}

.absorption-bar {
    width: 100%;
    height: 20px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.bar-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 2s ease;
    position: relative;
}

.bar-fill.firecare {
    background: var(--gradient-primary);
    width: 95%;
}

.bar-fill.common {
    background: #6c757d;
    width: 30%;
}

.absorption-item span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Formula Section */
.formula-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ingredient-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ingredient-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.ingredient-card.featured {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border: 2px solid var(--accent-color);
}

.ingredient-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.ingredient-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ingredient-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.ingredient-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.ingredient-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.dosage {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ingredient-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.benefit-tag {
    background: rgba(255, 69, 0, 0.1);
    color: var(--accent-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Benefícios Section */
.beneficios {
    background: var(--bg-light);
}

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

.beneficio-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.beneficio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.beneficio-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.beneficio-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-content .cta-primary {
    background: var(--white);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cta-content .cta-primary:hover {
    background: var(--gold-color);
    color: var(--white);
}

.guarantee-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    opacity: 0.9;
}

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

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

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #ccc;
}

.contact-info i {
    color: var(--accent-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
    color: #999;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .diferencial-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .formula-grid {
        grid-template-columns: 1fr;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-primary {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .cta-primary.large {
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .ingredient-card,
    .beneficio-card {
        padding: 1.5rem;
    }
}

/* Animações adicionais */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ingredient-card,
.beneficio-card {
    animation: fadeInUp 0.6s ease forwards;
}

.ingredient-card:nth-child(1) { animation-delay: 0.1s; }
.ingredient-card:nth-child(2) { animation-delay: 0.2s; }
.ingredient-card:nth-child(3) { animation-delay: 0.3s; }
.ingredient-card:nth-child(4) { animation-delay: 0.4s; }
.ingredient-card:nth-child(5) { animation-delay: 0.5s; }
.ingredient-card:nth-child(6) { animation-delay: 0.6s; }
.ingredient-card:nth-child(7) { animation-delay: 0.7s; }
.ingredient-card:nth-child(8) { animation-delay: 0.8s; }



/* Kits Section */
.kits {
    background: var(--bg-light);
}

.kits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.kit-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.kit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.kit-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.2);
}

.kit-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.kit-header .duration {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    display: block;
}

.kit-price {
    margin: 2rem 0;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.kit-price .currency {
    font-size: 1.5rem;
    vertical-align: super;
    margin-right: 5px;
}

.kit-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.kit-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 500;
}

.kit-features i {
    color: var(--accent-color);
}

.kit-cta {
    margin-top: auto;
    width: 100%;
}

/* Rastrear Pedido Section */
.rastrear-pedido {
    background: var(--white);
}

.tracking-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.tracking-form input[type="text"] {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #ddd;
    border-radius: 30px;
    font-size: 1.1rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.3s ease;
}

.tracking-form input[type="text"]:focus {
    border-color: var(--accent-color);
}

.tracking-form .cta-primary {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
}

/* Garantia Section */
.garantia {
    background: var(--bg-light);
}

.garantia-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.garantia-icon {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.garantia-icon i {
    font-size: 4rem;
    color: var(--white);
}

.garantia-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.garantia-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Depoimentos Section */
.depoimentos {
    background: var(--white);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.depoimento-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.depoimento-card .quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.depoimento-card .author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.depoimento-card .author .name {
    font-weight: 600;
    color: var(--primary-color);
}

.depoimento-card .author .rating i {
    color: var(--gold-color);
}

/* FAQ Section */
.faq {
    background: var(--bg-light);
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: 
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f078"; /* Chevron down */
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.faq-answer.active {
    max-height: 500px; /* Ajuste conforme necessário */
    padding: 0 2rem 1.5rem;
}

/* Responsive Adjustments for new sections */
@media (max-width: 768px) {
    .kits-grid,
    .depoimentos-grid,
    .garantia-content {
        grid-template-columns: 1fr;
    }

    .garantia-content {
        flex-direction: column;
        text-align: center;
    }

    .garantia-icon {
        margin-bottom: 1.5rem;
    }

    .tracking-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .kit-price {
        font-size: 2.8rem;
    }

    .kit-header h3 {
        font-size: 1.5rem;
    }

    .garantia-text h3 {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

    .faq-answer {
        padding: 0 1.5rem 1rem;
    }
}




/* Kits Section */
.kits {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

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

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

.kit-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.kit-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.kit-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.duration {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.kit-price {
    margin: 30px 0;
}

.kit-price .currency {
    font-size: 20px;
    color: var(--text-light);
    vertical-align: top;
}

.kit-price .price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.economy {
    display: block;
    color: #28a745;
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
}

.kit-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.kit-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.kit-features i {
    color: #28a745;
    margin-right: 10px;
    font-size: 16px;
}

.kit-cta {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

/* Rastrear Pedido Section */
.rastrear {
    padding: 80px 0;
    background: var(--white);
}

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

.rastrear-form {
    display: flex;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
}

#codigo-rastreio {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

#codigo-rastreio:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

#btn-rastrear {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

.rastrear-info {
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.rastrear-info i {
    color: var(--primary-color);
}

/* Responsividade para Kits e Rastreamento */
@media (max-width: 768px) {
    .kits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .kit-card.featured {
        transform: none;
    }
    
    .kit-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .kit-price .price {
        font-size: 36px;
    }
    
    .rastrear-form {
        flex-direction: column;
    }
    
    #codigo-rastreio {
        min-width: 100%;
    }
    
    #btn-rastrear {
        width: 100%;
    }
}

