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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #3f3d39;
    background-color: #fffdf1;
    font-size: 16px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Archivo Black', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 16px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 16px;
    font-weight: 400;
    color: #3f3d39;
}

img{
    max-width:100%;
    height: auto;
}
div{
    max-width: 100%;
}

/* Buttons */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: #e45e1a;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-height: 56px;
}

.whatsapp-btn:hover {
    background-color: #c54e15;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(228, 94, 26, 0.3);
}

.whatsapp-btn.primary {
    background-color: #e45e1a;
    font-size: 1.125rem;
    padding: 20px 40px;
}

.whatsapp-btn.secondary {
    background-color: #e45e1a;
    font-size: 1rem;
    padding: 16px 32px;
}

.whatsapp-btn.final {
    background-color: #e45e1a;
    font-size: 1.25rem;
    padding: 24px 48px;
    border-radius: 12px;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.whatsapp-link {
    color: #e45e1a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.whatsapp-link:hover {
    color: #c54e15;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
}

.whatsapp-btn-float {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #e45e1a;
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(228, 94, 26, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-btn-float:hover {
    background-color: #c54e15;
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(228, 94, 26, 0.5);
}

.whatsapp-text {
    font-size: 0.875rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 253, 241, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(204, 198, 186, 0.8);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #3f3d39;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: #3f3d39;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.logo-text {
    font-size: 1.5rem;
    font-family: 'Archivo Black', sans-serif;
    color: #3f3d39;
}

/* Desktop Navigation */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #3f3d39;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #000000;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e45e1a;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Header CTA */
.header-cta {
    display: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 4px;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #3f3d39;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.nav-mobile {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fffdf1;
    border-bottom: 1px solid #ccc6ba;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(63, 61, 57, 0.1);
}

.nav-mobile.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.nav-mobile-content {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nav-mobile-link {
    color: #3f3d39;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 12px 0;
    border-bottom: 1px solid #ccc6ba;
    transition: color 0.3s ease;
}

.nav-mobile-link:hover {
    color: #000000;
}

.nav-mobile-link:last-of-type {
    border-bottom: none;
}

.nav-mobile-cta {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #ccc6ba;
}

/* Desktop Styles */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .header-cta {
        display: block;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .nav-mobile {
        display: none;
    }
}

/* Sections */
section {
    padding: 100px 0 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Archivo Black', sans-serif;
    color: #3f3d39;
    margin-bottom: 48px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3f3d39 0%, #000000 100%);
    color: white;
    padding-top:160px;
    padding-bottom:120px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 2.5rem;
    font-family: 'Archivo Black', sans-serif;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    width: 20px;
    height: 20px;
    color: #e45e1a;
}

.badge span {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
}

.price-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.price-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.price-value {
    font-size: 2.5rem;
    font-family: 'Archivo Black', sans-serif;
    color: #e45e1a;
}

.price-installment {
    font-size: 1rem;
    color: white;
    font-weight: 600;
}

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

.lgpd-notice {
    margin-top: 16px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.clinic-illustration {
    width: 400px;
    max-width: 100%;
    height: auto;
    padding: 40px;
    background: #fffdf1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Trust Section */
.trust-section {
    background-color: #ccc6ba;
    padding: 80px 0;
}

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

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background-color: #fffdf1;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(63, 61, 57, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(63, 61, 57, 0.12);
}

.trust-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: #3f3d39;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 24px;
    height: 24px;
}

.trust-item p {
    font-weight: 500;
    color: #3f3d39;
    margin: 0;
}

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

/* Procedure Section */
.procedure-section {
    padding: 80px 0;
}

.procedure-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.procedure-intro p {
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.procedure-steps {
    display: grid;
    gap: 24px;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background-color: #ccc6ba;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateX(8px);
}

.step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: #3f3d39;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.step-content h3 {
    margin: 0;
    color: #3f3d39;
    font-weight: 600;
    font-size: 1.125rem;
}

.procedure-info {
    background-color: #ccc6ba;
    padding: 48px;
    border-radius: 16px;
    margin-bottom: 48px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.info-item h4 {
    color: #3f3d39;
    font-weight: 700;
    margin-bottom: 12px;
}

.info-item p {
    color: #3f3d39;
    margin: 0;
    font-weight: 500;
}

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

/* Results Section */
.results-section {
    background-color: #ccc6ba;
    padding: 80px 0;
}

.results-content {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

.results-content p {
    font-size: 1.125rem;
    margin-bottom: 24px;
}

/* Safety Section */
.safety-section {
    padding: 80px 0;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.safety-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    background-color: #ccc6ba;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.safety-item:hover {
    transform: translateY(-4px);
}

.safety-icon {
    width: 48px;
    height: 48px;
    color: #3f3d39;
    margin-bottom: 16px;
}

.safety-item p {
    font-weight: 600;
    color: #3f3d39;
    margin: 0;
}

.safety-note {
    background-color: #e45e1a;
    color: white;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 48px;
    border-left: 4px solid #c54e15;
}

.safety-note p {
    margin: 0;
    color: white;
    font-weight: 500;
}

/* Investment Section */
.investment-section {
    background-color: #ccc6ba;
    padding: 80px 0;
}

.investment-content {
    text-align: center;
    margin-bottom: 48px;
}

.price-card {
    background-color: #fffdf1;
    padding: 48px 32px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(63, 61, 57, 0.1);
    max-width: 500px;
    margin: 0 auto 32px;
}

.price-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
}

.price-from {
    font-size: 0.875rem;
    color: #3f3d39;
    font-weight: 500;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 3rem;
    font-family: 'Archivo Black', sans-serif;
    color: #3f3d39;
    line-height: 1;
}

.price-installment {
    background-color: #e45e1a;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.price-note {
    color: #3f3d39;
    font-weight: 500;
    margin: 0;
}

.investment-note {
    font-style: italic;
    color: #e45e1a;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

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

.faq-item {
    border-bottom: 1px solid #ccc6ba;
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #3f3d39;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #e45e1a;
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 0 24px 0;
    margin: 0;
    color: #3f3d39;
    font-weight: 500;
    line-height: 1.6;
}

/* Social Proof Section */
.social-proof-section {
    background-color: #ccc6ba;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 32px 24px;
    background-color: #fffdf1;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(63, 61, 57, 0.08);
}

.stat-number {
    font-size: 3rem;
    font-family: 'Archivo Black', sans-serif;
    color: #e45e1a;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: #3f3d39;
    font-weight: 600;
}

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

.testimonial {
    padding: 32px 24px;
    background-color: #fffdf1;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(63, 61, 57, 0.08);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 4rem;
    color: #e45e1a;
    opacity: 0.3;
    line-height: 1;
}

.testimonial p {
    font-style: italic;
    font-weight: 500;
    color: #3f3d39;
    margin-bottom: 16px;
    padding-left: 32px;
}

.testimonial-author {
    font-weight: 600;
    color: #3f3d39;
    font-size: 0.875rem;
}

/* Location Section */
.location-section {
    padding: 80px 0;
}

.location-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.address-item,
.hours-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 32px;
    background-color: #ccc6ba;
    border-radius: 12px;
}

.location-icon,
.clock-icon {
    width: 32px;
    height: 32px;
    color: #3f3d39;
    margin-top: 4px;
}

.address-item h3,
.hours-item h3 {
    color: #3f3d39;
    font-weight: 700;
    margin-bottom: 8px;
}

.address-item p,
.hours-item p {
    color: #3f3d39;
    margin: 0;
    font-weight: 500;
}

.location-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.maps-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background-color: #3f3d39;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.maps-btn:hover {
    background-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(63, 61, 57, 0.3);
}

.maps-icon {
    width: 20px;
    height: 20px;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #3f3d39 0%, #000000 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.final-cta-title {
    font-size: 3rem;
    font-family: 'Archivo Black', sans-serif;
    color: white;
    margin-bottom: 24px;
}

.final-cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.final-badge-icon {
    width: 32px;
    height: 32px;
    color: #e45e1a;
}

.final-badge span {
    font-weight: 600;
    font-size: 0.875rem;
    color: white;
}

.final-cta-button {
    display: flex;
    justify-content: center;
}

/* Footer */
.footer {
    background-color: #3f3d39;
    color: white;
    padding: 48px 0;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #e45e1a;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto;
}

.footer-disclaimer p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    line-height: 1.5;
}

.footer-company,
.footer-privacy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* Typography adjustments */
    h1 {
        font-size: 2rem;
    }
    
    h2,
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .final-cta-title {
        font-size: 2.25rem;
    }
    
    /* Container padding */
    .container {
        padding: 0 16px;
    }
    
    /* Section padding */
    section {
        padding: 60px 0;
    }
    
    .hero,
    .final-cta-section {
        padding: 80px 0;
    }
    
    /* Hero adjustments */
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .price-value {
        font-size: 2rem;
    }
    
    /* Trust section */
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    /* Steps */
    .step {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    /* Info grid */
    .info-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .procedure-info {
        padding: 32px 24px;
    }
    
    /* Safety grid */
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Testimonials */
    .testimonials {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Location */
    .location-info {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .location-actions {
        gap: 24px;
    }
    
    .location-actions .whatsapp-btn {
        width: 100%;
        max-width: 400px;
    }
    
    /* Final badges */
    .final-trust-badges {
        grid-template-columns: 2fr 2fr;
        gap: 16px;
    }
    
    /* Footer */
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
    
    /* Buttons */
    .whatsapp-btn {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .whatsapp-btn.primary {
        font-size: 1rem;
        padding: 18px 32px;
    }
    
    .whatsapp-btn.final {
        font-size: 1.125rem;
        padding: 20px 32px;
    }
    
    /* Floating button adjustments */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn-float {
        padding: 14px 20px;
        border-radius: 50px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    /* Price card */
    .price-card {
        padding: 32px 24px;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    /* FAQ adjustments */
    .faq-question {
        font-size: 1rem;
        padding: 20px 0;
    }
    
    /* Smaller elements */
    .badge {
        padding: 10px 14px;
    }
    
    .badge span {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    /* Even smaller screens */
    h1,
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title,
    .final-cta-title {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 12px;
    }
    
    section {
        padding: 48px 0;
    }
    
    .price-value {
        font-size: 1.75rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .whatsapp-btn {
        font-size: 0.875rem;
        padding: 16px 24px;
    }
    
    .whatsapp-btn.primary {
        font-size: 0.875rem;
        padding: 16px 24px;
    }
    
    .whatsapp-btn.final {
        font-size: 1rem;
        padding: 18px 28px;
    }
    
    .final-trust-badges {
        grid-template-columns: 1fr 1fr;
    }
}

/* High contrast and accessibility improvements */
@media (prefers-contrast: high) {
    .badge {
        background-color: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .price-highlight {
        background-color: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .final-badge {
        background-color: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
}

/* Focus states for accessibility */
button:focus,
a:focus,
.faq-question:focus {
    outline: 2px solid #25D366;
    outline-offset: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Print styles */
@media print {
    .whatsapp-float,
    .whatsapp-btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    section {
        padding: 24px 0;
    }
}