/*
Theme Name: Ken Dos Play Landing V2
Description: Tema personalizado para a landing page do garanhão Ken Dos Play - Versão otimizada para conversão
Version: 2.0
Author: Manus AI
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #374151;
    background: linear-gradient(to bottom, #fef3c7, #ffffff);
    min-height: 100vh;
}

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

/* Header */
.site-header {
    background-color: #92400e;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.site-header h1 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    order: 2;
}

@media (min-width: 768px) {
    .hero-content {
        order: 1;
    }
}

.hero-image {
    order: 1;
    position: relative;
}

@media (min-width: 768px) {
    .hero-image {
        order: 2;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    background-color: #d97706;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.badge svg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #92400e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #a16207;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.btn-primary {
    background-color: #d97706;
    color: white;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #b45309;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.champion-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background-color: #d97706;
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    font-weight: bold;
}

.champion-badge svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    fill: currentColor;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background-color: white;
}

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

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #92400e;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto 3rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text p {
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Genealogy Section */
.genealogy-section {
    background-color: #fef3c7;
    border-radius: 0.5rem;
    padding: 2rem;
    margin-bottom: 3rem;
}

.genealogy-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #92400e;
    margin-bottom: 1.5rem;
    text-align: center;
}

.genealogy-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .genealogy-content-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.genealogy-image-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    text-align: center;
}

.genealogy-image-card img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.genealogy-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.genealogy-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.genealogy-card h4 {
    color: #a16207;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.genealogy-card p {
    color: #374151;
    line-height: 1.75;
}

/* Offspring Section */
.offspring-section {
    text-align: center;
}

.offspring-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #92400e;
    margin-bottom: 1.5rem;
}

.offspring-text {
    color: #374151;
    max-width: 64rem;
    margin: 0 auto 2rem;
    line-height: 1.75;
}

.thor-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.thor-images-grid img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom, #fef3c7, white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    text-align: center;
}

.pricing-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid #fbbf24;
}

.pricing-card.premium {
    background: linear-gradient(to bottom, #fef3c7, white);
}

.pricing-header h3 {
    color: #a16207;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.pricing-badge {
    background-color: #16a34a;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    margin: 0 auto 1rem;
    display: inline-block;
}

.pricing-price {
    margin-bottom: 1rem;
}

.pricing-price .amount {
    font-size: 1.875rem;
    font-weight: bold;
    color: #92400e;
}

.pricing-price .decimal {
    color: #6b7280;
}

.pricing-installment {
    color: #6b7280;
    margin-bottom: 1rem;
}

.pricing-card .btn-primary {
    width: 100%;
}

.pricing-note {
    text-align: center;
    color: #6b7280;
    font-style: italic;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background-color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-icon {
    width: 3rem;
    height: 3rem;
    color: #d97706;
    margin: 0 auto 1rem;
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 0.5rem;
}

.benefit-description {
    color: #374151;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background-color: #fef3c7;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.testimonial-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text {
    font-size: 1.125rem;
    color: #374151;
    font-style: italic;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.testimonial-author {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 600;
    margin-top: 1rem;
}

.testimonial-author .author-name {
    color: #92400e;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(to right, #d97706, #a16207);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.btn-secondary {
    background-color: white;
    color: #a16207;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #f3f4f6;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

/* Contact Form Section */
.contact-section {
    padding: 4rem 0;
    background-color: white;
}

.contact-container {
    max-width: 32rem;
    margin: 0 auto;
}

.contact-form {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.25rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #d97706;
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    background-color: #d97706;
    color: white;
    padding: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #b45309;
}

/* Security Section */
.security-section {
    padding: 2rem 0;
    background-color: #f9fafb;
    text-align: center;
}

.security-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.security-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #16a34a;
    margin-right: 0.5rem;
}

.security-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
}

/* Footer */
.site-footer {
    background-color: #92400e;
    color: white;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #fbbf24;
    line-height: 1.75;
}

.btn-footer-contact {
    background-color: #d97706;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    margin-top: 1rem;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-footer-contact:hover {
    background-color: #b45309;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #fbbf24;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

.social-links svg {
    width: 1.5rem;
    height: 1.5rem;
}

.whatsapp-icon {
    color: #25D366 !important;
}

.whatsapp-icon:hover {
    color: #1DA851 !important;
}

.social-handle {
    color: #fbbf24;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #a16207;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: #fbbf24;
}

/* Responsive Design */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}


/* Novos estilos para funcionalidades V2 */

/* Hero Section - Novos estilos */
.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-ctas {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-whatsapp:hover {
    background-color: #1DA851;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.exclusivity-text {
    font-size: 0.875rem;
    color: #dc2626;
    font-weight: 600;
    text-align: center;
}

@media (min-width: 768px) {
    .exclusivity-text {
        text-align: left;
    }
}

/* Urgency Section */
.urgency-section {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.urgency-content {
    max-width: 800px;
    margin: 0 auto;
}

.urgency-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .urgency-title {
        font-size: 2.5rem;
    }
}

.urgency-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.countdown-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 1rem;
    min-width: 80px;
    backdrop-filter: blur(10px);
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 0.25rem;
}

.btn-urgent {
    background-color: #fbbf24;
    color: #92400e;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-weight: bold;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.btn-urgent:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* About Section - Novos estilos */
.benefit-highlight {
    background-color: #fef3c7;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #d97706;
}

.benefit-highlight h3 {
    color: #92400e;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.benefit-highlight p {
    color: #374151;
    line-height: 1.75;
}

/* Benefits Section - Novos estilos */
.benefit-item {
    background-color: #f9fafb;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background-color: #fef3c7;
    transform: translateY(-2px);
}

/* Pricing Section - Novos estilos */
.pricing-card {
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

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

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #fef3c7;
}

.faq-question h3 {
    color: #92400e;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d97706;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #374151;
    line-height: 1.75;
    margin: 0;
}

/* Testimonials Section - Novos estilos */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Trust Section */
.trust-section {
    padding: 2rem 0;
    background-color: #f9fafb;
    text-align: center;
}

.trust-content {
    max-width: 800px;
    margin: 0 auto;
}

.trust-seals {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.trust-seal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.trust-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #16a34a;
}

.trust-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.trust-guarantee {
    font-size: 1rem;
    color: #6b7280;
    margin-top: 1rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-float.visible {
    opacity: 1;
    visibility: visible;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #25D366;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.875rem;
}

.whatsapp-float a:hover {
    background-color: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-text {
    display: none;
}

@media (min-width: 768px) {
    .whatsapp-text {
        display: block;
    }
}

.whatsapp-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background-color: rgba(37, 211, 102, 0.3);
    animation: whatsapp-pulse 2s infinite;
    z-index: -1;
}

@keyframes whatsapp-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Responsive Design - Atualizações */
@media (max-width: 767px) {
    .urgency-title {
        font-size: 1.5rem;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 0.75rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .trust-seals {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Ripple Effect for Buttons */
.btn-primary,
.btn-secondary,
.btn-urgent,
.form-submit {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .whatsapp-pulse {
        animation: none;
    }
    
    .btn-urgent {
        animation: none;
    }
}

/* Focus Styles for Accessibility */
.btn-primary:focus,
.btn-secondary:focus,
.btn-urgent:focus,
.form-input:focus,
.form-select:focus,
.form-textarea:focus,
.form-submit:focus,
.faq-question:focus {
    outline: 2px solid #d97706;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .hero-title,
    .section-title,
    .urgency-title {
        color: #000;
    }
    
    .btn-primary,
    .btn-urgent {
        border: 2px solid #000;
    }
}

