/* pv-google - page-specific styles */

:root {
    --white: #ffffff;
    --gray-light: #f5f5f7;
    --gray-medium: #f2f2f7;
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --blue: #0071e3;
    --green: #30d158;
    --red: #ff3b30;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.4;
    color: var(--text-primary);
    background: var(--white);
    overflow-x: hidden;
}

/* Base Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 60px 20px;
}

.section-alt {
    background: var(--gray-light);
}

.first-after-hero {
    padding-top: 40px;
}

.text-center { text-align: center; }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.text-blue { color: var(--blue); }

/* Typography */
.section-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 21px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    display: flex;
    align-items: center;
    padding: 60px 20px 40px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 72px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero .subtitle {
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 400;
    line-height: 1.3;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero .description {
    font-size: 21px;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.product-image {
    margin: 48px auto 0 auto;
    max-width: 400px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.product-image img {
    width: 100%;
    height: auto;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--blue);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    box-shadow: 0 4px 14px rgba(0, 113, 227, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 113, 227, 0.4);
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.card {
    background: var(--white);
    border-radius: 18px;
    padding: 32px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    width: 64px;
    height: 64px;
    background: var(--blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    font-size: 24px;
    color: white;
}

.card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.card p {
    font-size: 17px;
    line-height: 1.4;
    color: var(--text-secondary);
    text-align: center;
}

/* Statistics */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.stat-card {
    text-align: center;
    padding: 32px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 48px;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 8px;
    text-align: center;
}

.stat-label {
    font-size: 17px;
    color: var(--text-secondary);
    text-align: center;
}

/* Timeline */
.features-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin: 48px 0;
}

.timeline-item {
    position: relative;
    padding: 32px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow);
    text-align: center;
}

.timeline-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.timeline-title {
    font-size: 24px;
    font-weight: 600;
    margin: 16px 0;
    color: var(--blue);
    text-align: center;
}

.timeline-description {
    font-size: 17px;
    line-height: 1.4;
    color: var(--text-secondary);
    text-align: center;
}

/* Ingredients */
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.ingredient-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--green);
    text-align: center;
}

.ingredient-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ingredient-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.4;
    text-align: center;
}

/* Benefits Table */
.benefits-table {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin: 48px 0;
}

.benefits-table table {
    width: 100%;
    border-collapse: collapse;
}

.benefits-table th,
.benefits-table td {
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid var(--gray-medium);
}

.benefits-table th {
    background: var(--gray-light);
    font-weight: 600;
    font-size: 18px;
}

.benefits-table td {
    font-size: 17px;
}

.benefits-table .before {
    color: var(--red);
}

.benefits-table .after {
    color: var(--green);
}

/* Testimonials Carousel */
.testimonials-carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

.testimonials-carousel {
    display: flex;
    transition: transform 0.8s ease-in-out; /* AJUSTADO: Transição mais suave (era 0.5s) */
}

.testimonial-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 20px;
}

.testimonial-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 40px 30px 30px;
    text-align: center;
    border-radius: 0 0 20px 20px;
}

.testimonial-badge {
    display: inline-block;
    background: var(--green);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-overlay h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.testimonial-overlay p {
    font-size: 16px;
    line-height: 1.4;
    color: rgba(255,255,255,0.95);
    font-style: italic;
    margin: 0;
}

/* Navegação do Carrossel */
.carousel-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.carousel-btn {
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.carousel-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Indicadores */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--blue);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--blue);
    opacity: 0.7;
}

/* Auto-play indicator */
.carousel-indicators::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--blue);
    border-radius: 1px;
    opacity: 0.3;
}

.carousel-info {
    margin-top: 16px;
}

/* Touch gestures para mobile */
.testimonials-carousel-container {
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Responsividade do Carrossel */
@media (max-width: 768px) {
    .testimonials-carousel-container {
        margin: 0 -16px;
        border-radius: 0;
    }
    
    .testimonial-image {
        border-radius: 0;
    }
    
    .testimonial-overlay {
        padding: 30px 20px 20px;
        border-radius: 0;
    }
    
    .testimonial-overlay h4 {
        font-size: 18px;
    }
    
    .testimonial-overlay p {
        font-size: 14px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-navigation {
        padding: 0 10px;
    }
    
    .testimonial-badge {
        font-size: 10px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .testimonial-overlay {
        padding: 20px 15px 15px;
    }
    
    .testimonial-overlay h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .testimonial-overlay p {
        font-size: 13px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.pricing-card {
    background: var(--white);
    border-radius: 18px;
    padding: 32px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--blue) 0%, #005bb5 100%);
    color: white;
    transform: scale(1.05);
}

.pricing-card.featured .card-icon {
    background: white;
    color: var(--blue);
    margin: 0 auto 24px auto;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: white;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.pricing-price {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}

.pricing-period {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    text-align: center;
}

.pricing-card.featured .pricing-period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: center;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 17px;
    text-align: center;
}

.pricing-features li:before {
    content: "✓";
    color: var(--green);
    font-weight: 600;
    margin-right: 8px;
}

.pricing-card.featured .pricing-features li:before {
    color: white;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 48px auto;
}

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

.faq-question {
    padding: 24px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--gray-light);
}

.faq-answer {
    padding: 0 24px 24px;
    font-size: 17px;
    line-height: 1.4;
    color: var(--text-secondary);
    display: none;
    text-align: center;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-icon {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Stock Counter */
.stock-section {
    background: linear-gradient(135deg, var(--red) 0%, #d70015 100%);
    color: white;
    text-align: center;
    padding: 48px 20px;
}

.stock-counter {
    font-size: 48px;
    font-weight: 600;
    margin: 24px 0;
    text-align: center;
}

.stock-bar {
    background: rgba(255, 255, 255, 0.3);
    height: 12px;
    border-radius: 6px;
    margin: 32px auto;
    max-width: 400px;
    overflow: hidden;
}

.stock-fill {
    background: white;
    height: 100%;
    border-radius: 6px;
    transition: width 1s ease;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 48px 20px 32px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
}

.footer-section {
    text-align: left;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: left;
}

.footer-section p,
.footer-section a {
    font-size: 15px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
    text-align: left;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 48px;
    padding-top: 24px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.emoji-icon {
    display: inline-block;
    text-align: center;
    width: 1.2em;
    margin-right: 0.5em;
}

.word-break {
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.responsive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        padding: 40px 16px 30px;
        min-height: 100vh;
    }

    .section {
        padding: 40px 16px;
    }

    .first-after-hero {
        padding: 20px 16px 40px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .testimonial-card {
        min-width: 300px;
    }

    .testimonials-carousel-container {
        margin: 0 -16px;
        border-radius: 0;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .hero h1 {
        font-size: clamp(24px, 8vw, 48px);
    }
    
    .hero .subtitle {
        font-size: clamp(16px, 4vw, 20px);
    }
    
    .hero .description {
        font-size: 18px;
    }

    .timeline-number {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin: 0 auto 16px auto;
    }

    .testimonial-header {
        flex-direction: column;
        gap: 16px;
    }

    .testimonial-avatar {
        margin-right: 0;
    }

    .testimonial-info {
        text-align: center;
    }

    .testimonial-info h4,
    .testimonial-info p {
        text-align: center;
    }

    .responsive-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-image {
        margin: 32px auto 0 auto;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 30px 12px;
    }
    
    .hero {
        padding: 20px 12px 20px;
    }

    .first-after-hero {
        padding: 15px 12px 30px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-primary);
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

.cookie-text a {
    color: var(--blue);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--blue);
    color: white;
}

.cookie-btn.accept:hover {
    background: #005bb5;
}

.cookie-btn.decline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}