/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    background-image: url('images/paw-bg-light.png');
    background-repeat: repeat;
    background-size: 150px;
    background-attachment: fixed;
    background-position: center;
    background-blend-mode: overlay;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    margin-bottom: 20px;
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
}

section {
    padding: 80px 0;
    position: relative;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3cb371 0%, #228B22 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #f7dd6f;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/paw-pattern.png');
    opacity: 0.1;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url('images/wave-divider.png');
    background-size: cover;
    background-position: center bottom;
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    background-image: url('images/paw-circle.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    animation: rotate 40s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3));
    transition: transform 0.5s ease;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero h1 {
    margin-bottom: 20px;
    font-size: 2.8rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero h2 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Estilos para seção de CTA melhorada */
.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
    width: 100%;
}

/* Contador regressivo */
.countdown-container {
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

.countdown-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e74c3c;
    margin-bottom: 10px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    min-width: 70px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.countdown-value {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    font-size: 0.75rem;
    margin-top: 5px;
    opacity: 0.8;
}

/* Botão CTA */
.cta-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
    background-color: #e74c3c;
    color: white;
    padding: 16px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    border: none;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
    z-index: 1;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
    background-color: #d63031;
}

.cta-main-text {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.cta-sub-text {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 5px;
}

/* Garantias */
.cta-guarantees {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

.cta-guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #555;
}

.guarantee-icon {
    font-size: 1.2rem;
}

/* Métodos de pagamento */
.payment-methods {
    margin-top: 20px;
    text-align: center;
    width: 100%;
}

.payment-title {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.payment-icon {
    font-size: 1.5rem;
    opacity: 0.7;
}

/* Ajustes responsivos */
@media (max-width: 576px) {
    .countdown-timer {
        gap: 8px;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 6px 8px;
    }
    
    .countdown-value {
        font-size: 1.4rem;
    }
    
    .cta-button {
        padding: 14px 20px;
    }
    
    .cta-main-text {
        font-size: 1rem;
    }
    
    .cta-guarantees {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

/* Identification Questions Section */
.identification-questions {
    background-color: #fff;
    padding: 80px 0;
    position: relative;
}

.identification-questions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/bone-pattern.png');
    background-size: 100px;
    opacity: 0.03;
    z-index: 1;
}

.identification-questions .container {
    position: relative;
    z-index: 2;
}

.identification-questions h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.identification-questions h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #3cb371;
}

.questions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.question-item {
    background-color: #f5f9f5;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid #3cb371;
    position: relative;
}

.question-item::before {
    content: '?';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    color: rgba(60, 179, 113, 0.1);
    font-weight: bold;
}

.question-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.question-item p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #228B22;
    margin: 0;
}

.action-message {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    padding: 25px;
    border-radius: 15px;
    background-color: #f7dd6f;
    box-shadow: 0 5px 15px rgba(247, 221, 111, 0.3);
    position: relative;
}

.action-message::before,
.action-message::after {
    content: '🐾';
    position: absolute;
    font-size: 1.8rem;
}

.action-message::before {
    left: 20px;
}

.action-message::after {
    right: 20px;
}

/* Learning Benefits Section */
.learning-benefits {
    background-color: #f5f9f5;
    padding: 80px 0;
    position: relative;
}

.learning-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/dog-silhouette.png');
    background-size: 200px;
    background-repeat: no-repeat;
    background-position: left bottom;
    opacity: 0.05;
    z-index: 1;
}

.learning-benefits .container {
    position: relative;
    z-index: 2;
}

.learning-benefits h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #228B22;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.learning-benefits h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f7dd6f;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.benefit-item {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border-left: 4px solid #3cb371;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.3rem;
    margin-bottom: 15px;
    color: #3cb371;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.benefit-item h3 {
    color: #228B22;
    margin-bottom: 10px;
}

.bonus-feature {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 40px;
    padding: 25px;
    background-color: white;
    border-radius: 15px;
    color: #228B22;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 2px dashed #f7dd6f;
}

.checkmark {
    color: #3cb371;
    font-weight: bold;
    margin-right: 5px;
}

/* For You If Section */
.for-you-if {
    background-color: #fff;
    padding: 80px 0;
    position: relative;
}

.for-you-if::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background-image: url('images/heart-paw.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
}

.for-you-if h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.for-you-if h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f7dd6f;
}

.for-you-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.for-you-item {
    text-align: center;
    padding: 40px 30px;
    background-color: #f5f9f5;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, background-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.for-you-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #3cb371;
    transition: height 0.3s ease;
}

.for-you-item:hover {
    transform: translateY(-5px);
    background-color: #f1f8f1;
}

.for-you-item:hover::before {
    height: 6px;
}

.for-you-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.for-you-icon::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgba(60, 179, 113, 0.1);
    border-radius: 50%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.for-you-item p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    color: #228B22;
}

/* Bonus Section */
.bonus-section {
    background: linear-gradient(135deg, #3cb371 0%, #228B22 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.bonus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/treats-pattern.png');
    background-size: 150px;
    opacity: 0.1;
    z-index: 1;
}

.bonus-section .container {
    position: relative;
    z-index: 2;
}

.bonus-section h2 {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.bonus-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f7dd6f;
}

.bonus-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bonus-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.bonus-item::before {
    content: 'BÔNUS';
    position: absolute;
    top: 15px;
    right: -40px;
    background-color: #f7dd6f;
    color: #333;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 5px 40px;
    transform: rotate(45deg);
}

.bonus-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.bonus-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #f7dd6f;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Guarantee Section */
.guarantee {
    background-color: #fff;
    padding: 70px 0;
    position: relative;
}

.guarantee::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 100px;
    height: 100px;
    background-image: url('images/shield-paw.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
}

.guarantee-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #3cb371;
    background-color: #f5f9f5;
    box-shadow: 0 5px 25px rgba(60, 179, 113, 0.1);
    position: relative;
}

.guarantee-content::before,
.guarantee-content::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.guarantee-content::before {
    background-image: url('images/check-icon.png');
    top: -25px;
    left: 20%;
}

.guarantee-content::after {
    background-image: url('images/check-icon.png');
    top: -25px;
    right: 20%;
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #3cb371;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.guarantee h2 {
    color: #3cb371;
    margin-bottom: 15px;
}

/* Pricing Section */
.pricing {
    background-color: #f5f9f5;
    padding: 80px 0;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/dog-running.png');
    background-size: 200px;
    background-repeat: no-repeat;
    background-position: 10% 90%;
    opacity: 0.05;
}

.pricing-box {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.pricing-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #3cb371, #f7dd6f);
    z-index: 1;
}

.pricing-box h2 {
    color: #228B22;
    margin-bottom: 30px;
    position: relative;
}

.pricing-box h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f7dd6f;
}

/* Estilos para preço promocional */
.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.original-price {
    font-size: 1.8rem;
    font-weight: 500;
    color: #888;
    text-decoration: line-through;
    margin-bottom: 5px;
    position: relative;
}

.original-price .currency {
    font-size: 1.1rem;
    vertical-align: top;
    position: relative;
    top: 3px;
}

.original-price .cents {
    font-size: 1.1rem;
}

.price-tag {
    font-size: 2.8rem;
    font-weight: 700;
    color: #228B22;
    position: relative;
    display: inline-block;
    background: rgba(60, 179, 113, 0.1);
    padding: 5px 25px;
    border-radius: 15px;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    position: relative;
    top: 5px;
}

.cents {
    font-size: 1.5rem;
}

.price-tag::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(60, 179, 113, 0.3);
    border-radius: 20px;
    z-index: -1;
}

.discount-badge {
    background-color: #f7dd6f;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 25px;
    display: inline-block;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pricing-features {
    margin-bottom: 30px;
    text-align: left;
}

.pricing-feature {
    padding: 12px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
    position: relative;
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature .checkmark {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3cb371, #f7dd6f, #3cb371);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.footer-details p {
    margin-bottom: 10px;
}

.disclaimer {
    font-style: italic;
    opacity: 0.7;
    margin-top: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content, .hero-image {
        text-align: center;
    }
    
    .benefits-grid, .for-you-grid, .bonus-items {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .pricing-box {
        padding: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .action-message::before,
    .action-message::after {
        display: none;
    }
}

@media (max-width: 576px) {
    section {
        padding: 50px 0;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .questions-grid, .benefits-grid, .for-you-grid, .bonus-items {
        grid-template-columns: 1fr;
    }
    
    .guarantee-content::before,
    .guarantee-content::after {
        width: 40px;
        height: 40px;
        background-size: 25px;
    }
}

/* Adicionando estilos para as novas seções */

/* Badge e elementos do hero */
.badge {
    display: inline-block;
    background-color: #f7dd6f;
    color: #228B22;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 25px 0;
}

.hero-feature {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
}

.feature-icon {
    margin-right: 8px;
    font-size: 1.2rem;
}

.dog-image-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: #f7dd6f;
    color: #228B22;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
    transform: rotate(10deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Ícones nas perguntas */
.question-icon {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #3cb371;
}

/* Subtítulo nas seções */
.section-intro {
    text-align: center;
    margin-bottom: 50px;
}

.subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Seção de Depoimentos */
.testimonials {
    background-color: #fff;
    padding: 80px 0;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/quote-pattern.png');
    background-size: 150px;
    opacity: 0.03;
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #3cb371;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background-color: #f5f9f5;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonial-image {
    height: 200px;
    overflow: hidden;
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-item:hover .testimonial-img {
    transform: scale(1.05);
}

.testimonial-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.rating {
    color: #f7dd6f;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #228B22;
    text-align: right;
}

/* Seção de Benefícios para a Saúde */
.health-benefits {
    background-color: #f5f9f5;
    padding: 80px 0;
    position: relative;
}

.health-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/health-pattern.png');
    background-size: 200px;
    opacity: 0.03;
    z-index: 1;
}

.health-benefits .container {
    position: relative;
    z-index: 2;
}

.health-benefits h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #228B22;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.health-benefits h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f7dd6f;
}

.health-benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.health-benefit {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

.health-benefit:hover {
    transform: translateY(-5px);
}

.health-benefit-icon {
    font-size: 2.5rem;
    color: #3cb371;
    background-color: rgba(60, 179, 113, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.health-benefit-content {
    flex-grow: 1;
}

.health-benefit-content h3 {
    color: #228B22;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Seção FAQ */
.faq {
    background-color: #fff;
    padding: 80px 0;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/paw-pattern-light.png');
    background-size: 150px;
    opacity: 0.03;
    z-index: 1;
}

.faq .container {
    position: relative;
    z-index: 2;
}

.faq h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.faq h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #3cb371;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #f5f9f5;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-item h3 {
    color: #228B22;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.faq-item h3::before {
    content: '?';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background-color: #3cb371;
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Elementos adicionais no pricing */
.pro-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #3cb371;
    color: white;
    padding: 5px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(60, 179, 113, 0.3);
}

.secure-payment {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

/* Footer credits */
.footer-credits {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Ajustes responsivos para os novos elementos */
@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .health-benefits-list {
        grid-template-columns: 1fr;
    }
    
    .hero-features {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .testimonial-image {
        height: 150px;
    }
    
    .health-benefit {
        flex-direction: column;
        text-align: center;
    }
    
    .health-benefit-icon {
        margin: 0 auto 15px;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
}

/* Botão do rodapé */
.cta-button-footer {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: none;
    letter-spacing: 0.5px;
}

.cta-button-footer:hover {
    background-color: #d63031;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Estilos para placeholders de imagens de depoimentos */
.testimonial-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3cb371 0%, #228B22 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonial-img-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/paw-pattern.png');
    background-size: 100px;
    opacity: 0.1;
    z-index: 1;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.placeholder-pet {
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.placeholder-names {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
}

/* Seção de vídeo aprimorada */
.video-section {
    background-color: #f5f9f5;
    padding: 60px 0;
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/paw-pattern.png');
    background-size: 100px;
    opacity: 0.05;
    z-index: 1;
}

.video-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
    background-color: white;
}

/* Player de vídeo moderno */
#modern-player {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    background-color: #000;
}

#modern-player video {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: rgba(61, 179, 113, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background-color: rgba(61, 179, 113, 1);
}

.play-button svg {
    width: 40px;
    height: 40px;
    fill: white;
    margin-left: 5px; /* Alinha melhor o ícone de play */
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 10px 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

#modern-player:hover .video-controls {
    opacity: 1;
}

.progress-bar {
    height: 5px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
}

.progress-juice {
    height: 100%;
    width: 0%;
    background-color: #3db371;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: 0;
    transition: width 0.1s linear;
}

.controls-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.play-pause, .volume-btn, .fullscreen-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.play-pause:hover, .volume-btn:hover, .fullscreen-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.play-pause svg, .volume-btn svg, .fullscreen-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.pause-icon {
    display: none;
}

.time-display {
    color: white;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    margin-left: 10px;
}

.right-controls {
    display: flex;
    align-items: center;
}

/* Responsividade para o novo player */
@media (max-width: 768px) {
    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button svg {
        width: 30px;
        height: 30px;
    }

    .time-display {
        font-size: 12px;
    }

    .play-pause, .volume-btn, .fullscreen-btn {
        width: 32px;
        height: 32px;
    }

    .play-pause svg, .volume-btn svg, .fullscreen-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Restaurando estilos da legenda do vídeo e seção de características */
.time-separator {
    margin: 0 3px;
    opacity: 0.7;
}

/* Legenda do vídeo */
.video-caption {
    padding: 25px;
    text-align: center;
    background: linear-gradient(135deg, #3cb371 0%, #228B22 100%);
    color: white;
    position: relative;
    border-radius: 0 0 12px 12px;
}

.caption-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f7dd6f;
    color: #333;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.video-caption h3 {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.video-caption p {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
}

/* Recursos do vídeo */
.video-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.video-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.video-feature .feature-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    background-color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-feature p {
    font-weight: 500;
    color: #333;
    margin: 0;
}

@media (max-width: 768px) {
    .video-wrapper {
        max-width: 100%;
    }
    
    .video-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

/* Seção de Melodias para Acalmar */
/* Estes estilos não são mais necessários */ 