/* Reset e Base Styles */
* {
    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;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 60px 0;
    position: relative;
}

.hero-content {
    text-align: center;
    margin-bottom: 40px;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.highlight {
    color: #fbbf24;
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

/* Video Section */
.video-section {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

/* Video Container */
.video-container {
    position: relative;
    max-width: 800px;
    width: 100%;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.video-placeholder {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.play-button i {
    font-size: 32px;
    color: #2563eb;
    margin-left: 4px;
}

.video-info {
    text-align: center;
    margin-top: 15px;
}

.video-badge {
    background: #fbbf24;
    color: #1f2937;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 500;
}

.trust-item i {
    color: #10b981;
    font-size: 1.2rem;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.payment-methods img {
    height: 80px !important;
    max-width: 400px !important;
    width: auto !important;
    border-radius: 10px;
    opacity: 1;
    transition: all 0.3s ease;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.payment-methods img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Seletor específico para a imagem checkoutseguro */
img[src="checkoutseguro.jpg"] {
    height: 80px !important;
    max-width: 400px !important;
    width: auto !important;
    border-radius: 10px !important;
    opacity: 1 !important;
}

/* CTA Buttons */
.cta-button {
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    letter-spacing: 0.5px;
    display: block;
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
}

.cta-button:link,
.cta-button:visited {
    color: white;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}

.cta-button.secondary {
    background: linear-gradient(45deg, #10b981, #34d399);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.cta-button.final {
    background: linear-gradient(45deg, #dc2626, #ef4444);
    font-size: 1.2rem;
    padding: 20px 50px;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.cta-button.final span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #f8fafc;
}

.benefits-content {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-content h2 {
    font-size: 2.2rem;
    color: #1f2937;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.benefits-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.benefits-images img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.benefits-images img:hover {
    transform: scale(1.05);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f59e0b, #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    color: white;
    font-size: 24px;
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Features Section (Yellow) */
.features-section {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    padding: 80px 0;
    color: #1f2937;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-50px, -50px) rotate(360deg); }
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.features-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: #1f2937;
}

.features-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.features-list i {
    color: #10b981;
    margin-right: 15px;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.features-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1f2937;
    margin-bottom: 60px;
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial {
    background: #f8fafc;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-content h4 {
    color: #1f2937;
    margin-bottom: 10px;
    font-weight: 600;
}

.testimonial-content p {
    color: #6b7280;
    margin-bottom: 15px;
    line-height: 1.6;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: #fbbf24;
    font-size: 14px;
}

/* Dogs Gallery Section */
.dogs-gallery {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.dogs-gallery h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.gallery-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    display: block;
}

.gallery-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-badge.before {
    background: #ef4444;
    color: white;
}

.gallery-badge.after {
    background: #10b981;
    color: white;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
    padding: 80px 0;
    color: white;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.cta-form h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.form-options {
    margin-bottom: 40px;
}

.option {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1.5;
}

.option input[type="radio"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.option input[type="radio"]:checked + .checkmark {
    background: white;
    border-color: white;
}

.option input[type="radio"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #ec4899;
    border-radius: 50%;
}

.guarantee {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.guarantee p {
    margin-bottom: 5px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: #9ca3af;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .features-content,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .video-placeholder {
        height: 280px;
        object-fit: contain;
        background-color: #000;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
    }
    
    .play-button i {
        font-size: 26px;
    }
    
    .features-text h2,
    .dogs-gallery h2,
    .testimonials-section h2 {
        font-size: 1.8rem;
    }
    
    .benefits-images {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-images img {
        max-width: 300px;
        height: 220px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        gap: 20px;
    }
    
    .payment-methods img {
        height: 45px;
        max-width: 250px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-item img {
        width: 250px;
        height: 320px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .cta-image img {
        max-width: 320px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .video-container {
        max-width: 100%;
        margin: 0 15px;
    }
    
    .video-wrapper {
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .video-placeholder {
        height: 200px;
        object-fit: contain;
        background-color: #000;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 22px;
    }
    
    .benefits-content h2 {
        font-size: 1.6rem;
    }
    
    .benefits-images img {
        max-width: 280px;
        height: 200px;
    }
    
    .benefit-item {
        padding: 20px;
    }
    
    .cta-image img {
        max-width: 280px;
    }
    
    .payment-methods img {
        height: 40px;
        max-width: 200px;
    }
    
    .cta-button.final {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-item,
.testimonial,
.gallery-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}