/* =============================================
   PROGRAMA DE ACELERAÇÃO ÁGAPE - CSS
   Seguindo padrões de design do site principal
   ============================================= */

/* CSS Variables */
:root {
    --gold-primary: #C9A227;
    --gold-light: #E8D48A;
    --gold-dark: #8B7020;
    --green-dark: #1a4d2e;
    --green-medium: #2c5530;
    --green-light: #4f772d;
    --off-white: #F8F6F0;
    --white: #FFFFFF;
    --text-dark: #2C3E2D;
    --text-light: #6B7B6C;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--off-white);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

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

/* =============================================
   HEADER / NAVIGATION - Removido para usar premium-theme.css
   ============================================= */

/* =============================================
   HERO SECTION
   ============================================= */
.produto-hero {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-medium) 50%, var(--green-light) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-background-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    animation: backgroundMove 20s ease infinite;
    background-size: 400% 400%;
    pointer-events: none;
}

@keyframes backgroundMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

.produto-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.produto-hero-text {
    /* Texto à esquerda */
}

.produto-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.produto-hero-badge span {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.produto-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.produto-hero-subtitle {
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 20px;
    font-weight: 500;
}

.produto-hero-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    line-height: 1.7;
}

.produto-hero-highlight {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--gold-primary);
    border-radius: 0 8px 8px 0;
    backdrop-filter: blur(10px);
}

.produto-hero-cta {
    display: flex;
    justify-content: flex-start;
}

.produto-hero-image {
    position: relative;
}

.produto-hero-image .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.produto-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.produto-hero-image .image-glow {
    position: absolute;
    top: -20%;
    left: -20%;
    right: -20%;
    bottom: -20%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}


/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--green-dark);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.5);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 20px 50px;
    font-size: 1.2rem;
}

/* =============================================
   DIREÇÃO SECTION
   ============================================= */
.direcao-section {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    font-size: 2.5rem;
    color: var(--green-dark);
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold-primary), var(--gold-light));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 60px;
    margin-top: 30px;
}

.section-subtitle strong {
    color: var(--gold-primary);
    font-size: 1.5rem;
}

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

.resultado-card {
    background: var(--off-white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 162, 39, 0.1);
}

.resultado-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--gold-primary);
}

.resultado-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--green-dark), var(--green-medium));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.resultado-icon i {
    font-size: 2rem;
    color: var(--gold-light);
}

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

.resultado-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* =============================================
   CTA FINAL SECTION
   ============================================= */
.cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-medium) 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 40px;
}

.preco-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.preco-label {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.preco-valor {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.preco-valor .moeda {
    font-size: 1.5rem;
    color: var(--gold-light);
    font-weight: 600;
    margin-top: 10px;
}

.preco-valor .valor {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.preco-valor .centavos {
    font-size: 1.5rem;
    color: var(--gold-light);
    font-weight: 600;
    margin-top: 10px;
}

.preco-parcelado {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.garantias {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.garantia-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.garantia-item i {
    color: var(--gold-light);
    font-size: 1.2rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--gold-light);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* =============================================
   SCROLL TO TOP
   ============================================= */
.scroll-up {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    border: none;
    border-radius: 50%;
    color: var(--green-dark);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

.scroll-up.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-up:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.5);
}

/* =============================================
   RESPONSIVE - TABLET
   ============================================= */
@media (max-width: 992px) {
    .produto-hero {
        padding: 100px 0 60px;
    }

    .produto-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .produto-hero-text {
        text-align: center;
        order: 2;
    }

    .produto-hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .produto-hero-subtitle {
        text-align: center;
    }
    
    .produto-hero-description {
        text-align: center;
    }
    
    .produto-hero-highlight {
        text-align: center;
    }

    .produto-hero-cta {
        justify-content: center;
    }
    
    .produto-hero-text .btn {
        margin: 0 auto;
        display: block;
        width: fit-content;
    }

    .produto-hero-image {
        max-width: 400px;
        margin: 0 auto;
        order: -1;
    }

    .produto-hero-image img {
        width: 100%;
    }

    .section-title {
        text-align: center;
    }
    
    .section-subtitle {
        text-align: center;
    }
    
    .btn {
        margin: 0 auto;
        display: block;
        width: fit-content;
    }
    
    .direcao-section {
        text-align: center;
    }
    
    .resultados-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .resultado-card {
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* =============================================
   RESPONSIVE - MOBILE
   ============================================= */
@media (max-width: 768px) {
    .produto-hero {
        padding: 100px 0 50px;
    }

    .produto-hero-title {
        font-size: 2rem;
        text-align: center;
    }

    .produto-hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }

    .produto-hero-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .produto-hero-highlight {
        text-align: center;
    }

    .produto-hero-image img {
        max-width: 280px;
    }
    
    .cta-title {
        text-align: center;
    }
    
    .cta-subtitle {
        text-align: center;
    }

    .btn-lg {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .btn-xl {
        padding: 16px 35px;
        font-size: 1rem;
    }

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

    .resultados-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .resultado-card {
        padding: 30px 25px;
    }

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

    .preco-box {
        padding: 30px 20px;
    }

    .preco-valor .valor {
        font-size: 3rem;
    }

    .garantias {
        gap: 20px;
    }

    .garantia-item {
        font-size: 0.85rem;
    }
}

/* =============================================
   RESPONSIVE - MOBILE PEQUENO
   ============================================= */
@media (max-width: 480px) {
    .produto-hero-title {
        font-size: 1.7rem;
    }

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

    .produto-hero-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
    }

    .produto-hero-image img {
        max-width: 240px;
    }

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

    .section-subtitle {
        font-size: 1.1rem;
    }

    .section-subtitle strong {
        font-size: 1.3rem;
    }

    .resultado-icon {
        width: 65px;
        height: 65px;
    }

    .resultado-icon i {
        font-size: 1.6rem;
    }

    .resultado-card h3 {
        font-size: 1.1rem;
    }

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

    .preco-valor .valor {
        font-size: 2.5rem;
    }

    .preco-valor .moeda,
    .preco-valor .centavos {
        font-size: 1.2rem;
    }

    .garantias {
        flex-direction: column;
        gap: 15px;
    }
}


