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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
    border: 3px solid white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.5);
    background: linear-gradient(135deg, #FF8E53 0%, #FF6B6B 100%);
}

.btn-secondary {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 800;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 2px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.header-title h3 {
    color: #3B82F6;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 50%, #06B6D4 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    /* display: grid; */
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: center;
    z-index: 2;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);    
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: rotate(0deg) scale(1.05);
}

/* Produto Section */
.produto {
    padding: 100px 0;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
}

.produto-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.produto-content::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4, #FFEAA7, #DDA0DD);
    border-radius: 24px;
    z-index: -1;
}

.produto-image {
    text-align: center;
}

.produto-image img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3B82F6;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-title.center {
    text-align: center;
}

.section-description {
    font-size: 1.125rem;
    color: #64748B;
    line-height: 1.7;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748B;
    margin-bottom: 40px;
    line-height: 1.6;
}

.section-subtitle.center {
    text-align: center;
}

/* Desenhos Section */
.desenhos {
    padding: 80px 0;
    background: linear-gradient(135deg, #DBEAFE 0%, #D1FAE5 100%);
    position: relative;
}

.desenhos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.desenhos-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.desenhos-content img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.feature-item {
    background: white;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.feature-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #3B82F6;
    margin: 0;
    line-height: 1.4;
}

/* Kit Items */
.kit-content {
    margin-top: 60px;
}

.kit-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.kit-item {
    background: #F8FAFC;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #10B981;
    transition: transform 0.3s ease;
}

.kit-item:hover {
    transform: translateY(-3px);
}

.kit-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1E293B;
    margin: 0;
    line-height: 1.4;
}

.kit-includes {
    margin-top: 30px;
    text-align: left;
}

.kit-includes h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 16px;
}

.kit-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kit-includes li {
    padding: 8px 0;
    color: #374151;
    font-size: 1rem;
    line-height: 1.5;
}

.kit-highlight {
    font-size: 1.125rem;
    color: #1E293B;
    margin-top: 20px;
}

.price-highlight {
    color: #3B82F6;
    font-size: 1.25rem;
}

/* Bonus Especial */
.bonus-especial {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #DBEAFE 0%, #D1FAE5 100%);
    border-radius: 16px;
}

.devocional-includes {
    margin-top: 20px;
}

.devocional-includes h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 12px;
}

.devocional-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.devocional-includes li {
    padding: 6px 0;
    color: #374151;
    position: relative;
    padding-left: 20px;
}

.devocional-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

/* Formato Features */
.formato-features {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.formato-features p {
    font-size: 1.125rem;
    font-weight: 600;
    color: #10B981;
    margin: 0;
}

/* Depoimentos Adicionais */
.depoimentos-adicionais {
    padding: 100px 0;
    background: white;
}

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

.depoimento-card {
    background: #F8FAFC;
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid #3B82F6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.depoimento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
}

.depoimento-card p {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.depoimento-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #3B82F6;
    margin: 0;
}

.citacao-versiculo {
    font-size: 1.125rem;
    color: #374151;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Redes Sociais Section */
.redes-sociais {
    padding: 100px 0;
    background: white;
}

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

.feedback-card {
    background: #F8FAFC;
    padding: 24px;
    border-radius: 16px;
    border-left: 4px solid #3B82F6;
    position: relative;
}

.feedback-card::before {
    content: '';
    display: none;
}

.feedback-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.feedback-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3B82F6 0%, #10B981 100%);
    margin-right: 12px;
}

.feedback-info h4 {
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 4px;
}

.feedback-info span {
    font-size: 0.875rem;
    color: #64748B;
}

.feedback-card p {
    color: #374151;
    margin-bottom: 16px;
    line-height: 1.6;
}

.feedback-actions {
    display: flex;
    gap: 16px;
    font-size: 0.875rem;
    color: #64748B;
}

.feedback-actions span {
    cursor: pointer;
    transition: color 0.2s ease;
}

.feedback-actions span:hover {
    color: #3B82F6;
}

/* Instagram Feedbacks Section */
.instagram-feedbacks {
    padding: 100px 0;
    background: linear-gradient(135deg, #DBEAFE 0%, #D1FAE5 100%);
    text-align: center;
}

.rating {
    margin: 30px 0 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.stars {
    font-size: 1.5rem;
}

.rating-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
}

.instagram-phones img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Bônus Section */
.bonus {
    padding: 100px 0;
    background: white;
}

.highlight-green {
    color: #10B981;
    font-weight: 900;
}

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

.bonus-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.bonus-title {
    font-size: 2rem;
    font-weight: 800;
    color: #3B82F6;
    margin-bottom: 20px;
}

.bonus-price {
    margin-bottom: 24px;
}

.price-old {
    font-size: 1.125rem;
    color: #64748B;
    text-decoration: line-through;
    margin-right: 10px;
}

.price-new {
    font-size: 1.5rem;
    font-weight: 800;
    color: #10B981;
}

.bonus-description {
    font-size: 1.125rem;
    color: #64748B;
    margin-bottom: 32px;
    line-height: 1.6;
}

.bonus-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: #10B981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-content h4 {
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 4px;
}

.feature-content p {
    color: #64748B;
    line-height: 1.5;
}

/* Conteúdo Digital Section */
.conteudo-digital {
    padding: 100px 0;
    background: linear-gradient(135deg, #E0F2FE 0%, #DCFCE7 100%);
    text-align: center;
}

.digital-options {
    margin-top: 60px;
}

.digital-options img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Oferta Section */
.oferta {
    padding: 100px 0;
    background: linear-gradient(135deg, #FEF3C7 0%, #DBEAFE 100%);
    text-align: center;
    position: relative;
}

.oferta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.oferta-header {
    position: relative;
    z-index: 2;
}

.oferta-title {
    font-size: 3rem;
    font-weight: 900;
    color: #DC2626;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.oferta-box {
    background: white;
    border: 3px dashed #3B82F6;
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.oferta-product {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 30px;
}

.oferta-image {
    margin-bottom: 30px;
}

.oferta-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
}

.price-from {
    font-size: 1.125rem;
    color: #64748B;
    margin-bottom: 10px;
}

.price-final {
    font-size: 4rem;
    font-weight: 900;
    color: #3B82F6;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
   
}

.oferta-guarantee {
    font-size: 0.875rem;
    color: #64748B;
    margin-top: 16px;
}

/* Citação Bíblica */
.citacao-biblica {
    padding: 100px 0;
    background: white;
    text-align: center;
}

.citacao-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3B82F6;
    margin-bottom: 32px;
    line-height: 1.3;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.citacao-text {
    font-size: 1.125rem;
    color: #64748B;
    margin-bottom: 50px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.citacao-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Garantia Section */
.garantia {
    padding: 100px 0;
    background: linear-gradient(135deg, #E0F2FE 0%, #DCFCE7 100%);
}

.garantia-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.garantia-selo img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.garantia-title {
    font-size: 2rem;
    font-weight: 800;
    color: #3B82F6;
    margin-bottom: 16px;
}

.garantia-description {
    font-size: 1.125rem;
    color: #64748B;
    line-height: 1.6;
}

/* Citação Final */
.citacao-final {
    padding: 100px 0;
    background: linear-gradient(135deg, #3B82F6 0%, #1E40AF 100%);
    text-align: center;
    color: white;
}

.citacao-final .citacao-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 32px;
}

.citacao-final .citacao-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* Responsividade Melhorada */

/* Breakpoints:
   - Mobile: até 480px
   - Mobile Large: 481px - 768px  
   - Tablet: 769px - 1024px
   - Desktop: 1025px+
*/

/* Tablet (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 24px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .produto-content {
        gap: 60px;
    }
    
    .feedbacks-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Mobile Large (481px - 768px) */
@media (max-width: 768px) and (min-width: 481px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-content,
    .produto-content,
    .bonus-content,
    .garantia-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.75rem;
        text-align: center;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .oferta-title {
        font-size: 2rem;
    }
    
    .price-final {
        font-size: 3rem;
    }
    
    .citacao-title {
        font-size: 1.875rem;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 16px;
    }
    
    .btn {
        padding: 16px 32px;
        font-size: 16px;
        width: 100%;
        max-width: 350px;
    }
    
    .btn-large {
        padding: 18px 36px;
        font-size: 17px;
        width: 100%;
        max-width: 350px;
    }
    
    .feedbacks-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .garantia-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .kit-items {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .oferta-box {
        padding: 30px 24px;
    }
}

/* Mobile (até 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 90px 0 50px;
    }
    
    .hero-title {
        font-size: 2rem;
        text-align: center;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 28px;
    }
    
    .section-title {
        font-size: 1.75rem;
        text-align: center;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 32px;
    }
    
    .oferta-title {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .price-final {
        font-size: 2.5rem;
    }
    
    .citacao-title {
        font-size: 1.5rem;
        text-align: center;
        line-height: 1.3;
    }
    
    .oferta-box {
        padding: 24px 20px;
        margin: 0 -4px;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 15px;
        width: 100%;
        max-width: none;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
        width: 100%;
        max-width: none;
    }
    
    .hero-buttons {
        width: 100%;
        gap: 12px;
    }
    
    .feedback-card {
        padding: 20px;
        margin: 0 -4px;
    }
    
    .feature-item {
        padding: 16px;
        text-align: center;
    }
    
    .feature-item h3 {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .depoimento-card {
        padding: 20px;
        margin: 0 -4px;
    }
    
    .kit-item {
        padding: 16px;
        text-align: center;
    }
    
    .kit-item h4 {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .instagram-phones img {
        max-width: 100%;
        height: auto;
    }
    
    .rating {
        margin-bottom: 24px;
    }
    
    .stars {
        font-size: 1.25rem;
    }
    
    .rating-text {
        font-size: 0.9rem;
    }
}

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

.hero-content,
.produto-content,
.bonus-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Efeitos de hover adicionais */
.feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
    transition: all 0.3s ease;
}

.oferta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}


/* Estilos para as novas seções */
.produto-features p {
    font-size: 1.125rem;
    color: #10B981;
    font-weight: 600;
    margin-bottom: 8px;
}

.uso-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 16px;
}

.uso-section ul {
    list-style: none;
    padding: 0;
}

.uso-section li {
    font-size: 1.125rem;
    color: #64748B;
    margin-bottom: 8px;
    line-height: 1.5;
}

.formato-features {
    text-align: center;
    margin: 20px 0;
}

.formato-features p {
    font-size: 1.125rem;
    color: #10B981;
    font-weight: 600;
    margin-bottom: 8px;
}



/* Estilos para as novas seções do Jesus KIDS */

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
    text-align: center;
    border: 2px solid #E0F2FE;
}

.feature-item h3 {
    color: #3B82F6;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Kit Content */
.kit-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.kit-items {
    display: grid;
    gap: 15px;
    margin: 30px 0;
}

.kit-item {
    background: white;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #10B981;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.kit-item h4 {
    color: #1F2937;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.bonus-especial {
    background: linear-gradient(135deg, #E0F2FE 0%, #DCFCE7 100%);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
}

.bonus-especial h3 {
    color: #3B82F6;
    margin-bottom: 15px;
}

.devocional-includes ul {
    list-style: none;
    padding: 0;
}

.devocional-includes li {
    color: #10B981;
    font-weight: 500;
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
}

.devocional-includes li:before {
    content: "✓";
    color: #10B981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Depoimentos Adicionais */
.depoimentos-adicionais {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #E0F2FE 100%);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.depoimento-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
    border-top: 4px solid #3B82F6;
}

.depoimento-card p {
    font-style: italic;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 15px;
}

.depoimento-card h4 {
    color: #3B82F6;
    font-weight: 600;
    margin: 0;
    text-align: right;
}

/* Kit Includes na Oferta */
.kit-includes {
    background: #F8FAFC;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: left;
}

.kit-includes h4 {
    color: #3B82F6;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.kit-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kit-includes li {
    color: #10B981;
    font-weight: 500;
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
}

.kit-includes li:before {
    content: "✓";
    color: #10B981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Citação Versículo */
.citacao-versiculo {
    font-style: italic;
    font-size: 1.1rem;
    color: #4B5563;
    line-height: 1.6;
    margin: 20px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 4px solid #10B981;
}

/* Responsividade */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .kit-content {
        padding: 0 20px;
    }
}



/* Responsividade */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .produto-content,
    .diferencial-grid,
    .depoimentos-grid,
    .kit-completo-grid,
    .bonus-grid,
    .oferta-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .produto-image,
    .hero-image {
        order: -1; /* Move imagem para cima no mobile */
    }

    .section-title {
        font-size: 2rem;
    }

    .oferta-box {
        padding: 20px;
    }

    .price-original {
        font-size: 1.5rem;
    }

    .price-final {
        font-size: 3rem;
    }

    .citacao-title {
        font-size: 1.8rem;
    }

    .garantia-title {
        font-size: 1.5rem;
    }

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



.price-final {
    font-size: 4.5rem !important;
    font-weight: 900 !important;
    color: #FFFFFF !important;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    padding: 15px 30px;
    border-radius: 15px;
    margin-top: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* .price-final::before {
    content: "R$ 29,00";
} */

@media (max-width: 768px) {
    .price-final {
        font-size: 3.5rem !important;
        padding: 10px 20px;
    }
}


/* Destaque da seção de preço */
.kit-highlight {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    border: 2px solid #F59E0B;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.2);
}

.price-highlight {
    color: #10B981 !important;
    font-size: 2rem !important;
    font-weight: 900 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.oferta-box {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    border: 3px solid #10B981;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
    position: relative;
    overflow: hidden;
}

.oferta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(16, 185, 129, 0.05), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.kit-includes ul {
    background: #F0FDF4;
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #10B981;
    margin: 20px 0;
}

.kit-includes li {
    margin: 15px 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #374151;
}

@media (max-width: 768px) {
    .kit-highlight {
        font-size: 1rem;
        padding: 15px;
    }
    
    .price-highlight {
        font-size: 1.5rem !important;
    }
    
    .oferta-box {
        padding: 25px;
    }
}

