/* ================================
   VARIABLES CSS
   ================================ */
:root {
    --primary-color: #2c5f8d;
    --secondary-color: #4a90c8;
    --accent-color: #e67e22;
    --premium-color: #8e44ad;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --success-color: #27ae60;
    --border-radius: 12px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

/* ================================
   RESET & BASE STYLES
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

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

/* ================================
   HEADER
   ================================ */
.header {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.logo .subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

.header-cta .btn {
    padding: 12px 28px;
}

/* ================================
   BUTTONS
   ================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(44, 95, 141, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(44, 95, 141, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-premium {
    background: linear-gradient(135deg, var(--premium-color), #9b59b6);
    color: white;
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.3);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(142, 68, 173, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    background: linear-gradient(135deg, #2c5f8d 0%, #4a90c8 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Hero Badge Google Reviews */
.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 12px 25px;
    display: inline-block;
    margin-bottom: 30px;
}

.badge-stars {
    margin-bottom: 5px;
}

.badge-stars i {
    color: #ffd700;
    font-size: 1.1rem;
    margin: 0 2px;
}

.hero-badge p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.95;
}

.hero-badge strong {
    color: #ffd700;
    font-size: 1.1rem;
}

/* Hero Info Badges */
.hero-info {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 25px 0;
}

.info-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.info-badge i {
    color: #ffd700;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 30px;
    font-weight: 600;
    color: #ffd700;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0.95;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
.fade-in {
    animation: fadeInUp 0.8s ease;
}

.fade-in-delay {
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.fade-in-delay-2 {
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.fade-in-delay-3 {
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   SECTIONS COMMUNES
   ================================ */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================
   PROBLEM SECTION
   ================================ */
.problem-section {
    background: var(--bg-light);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.problem-card {
    background: white;
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.problem-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.problem-solution {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.highlight-text {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */
.testimonials-section {
    background: white;
}

.elfsight-widget-container {
    margin: 40px 0;
    min-height: 400px;
}

.google-review-cta {
    text-align: center;
    margin-top: 40px;
}

.google-review-cta p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

/* ================================
   PROCESS SECTION
   ================================ */
.process-section {
    background: var(--bg-light);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto 50px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.timeline-number {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(44, 95, 141, 0.3);
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-content h3 i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.process-followup {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.followup-box {
    background: white;
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    border-top: 4px solid var(--success-color);
}

.followup-box i {
    font-size: 3rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.followup-box h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.followup-box p {
    color: var(--text-light);
}

/* ================================
   BENEFITS SECTION
   ================================ */
.benefits-section {
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.benefit-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(44, 95, 141, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ================================
   ABOUT SECTION
   ================================ */
.about-section {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.about-image {
    position: sticky;
    top: 100px;
}

.placeholder-image {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 6rem;
    box-shadow: var(--box-shadow);
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.about-role {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 600;
}

.about-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.about-approach,
.about-mission {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
    box-shadow: var(--box-shadow);
}

.about-approach h4,
.about-mission h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.about-approach h4 i,
.about-mission h4 i {
    margin-right: 10px;
    color: var(--accent-color);
}

.about-approach p,
.about-mission p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-approach p:last-child,
.about-mission p:last-child {
    margin-bottom: 0;
}

.about-values {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.value-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.value-item span {
    font-weight: 600;
    color: var(--text-dark);
}

/* ================================
   OFFERS SECTION
   ================================ */
.offers-section {
    background: white;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-bottom: 50px;
}

.offer-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    border: 3px solid transparent;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.offer-card.featured {
    border-color: var(--primary-color);
}

.offer-card.premium {
    border-color: var(--premium-color);
    background: linear-gradient(135deg, #f8f4fc 0%, #faf7fd 100%);
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(44, 95, 141, 0.3);
}

.premium-badge {
    background: var(--premium-color);
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.3);
}

.offer-card h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.offer-duration {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1rem;
}

.offer-duration i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.offer-price {
    text-align: center;
    margin-bottom: 30px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
}

.offer-special {
    background: var(--premium-color);
    color: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
}

.offer-special i {
    margin-right: 8px;
}

.offer-includes h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.offer-includes ul {
    list-style: none;
    margin-bottom: 30px;
}

.offer-includes li {
    padding: 10px 0;
    color: var(--text-light);
    display: flex;
    align-items: start;
    gap: 12px;
}

.offer-includes li i {
    color: var(--success-color);
    margin-top: 3px;
    font-size: 1.1rem;
}

.offer-includes p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.cta-bottom {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.cta-question {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 600;
}

.cta-bottom .btn {
    margin: 10px;
}

/* ================================
   FAQ SECTION
   ================================ */
.faq-section {
    background: var(--bg-light);
}

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

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

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

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

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    margin-top: 15px;
}

.faq-answer li {
    padding: 8px 0;
    color: var(--text-light);
    padding-left: 25px;
    position: relative;
}

.faq-answer li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* ================================
   VALUES SECTION
   ================================ */
.values-section {
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.value-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    background: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.reassurance-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 8px 30px rgba(44, 95, 141, 0.3);
}

.reassurance-banner i {
    font-size: 4rem;
    opacity: 0.9;
}

.reassurance-text h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.reassurance-text p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* ================================
   FINAL CTA SECTION
   ================================ */
.final-cta {
    background: linear-gradient(135deg, #2c5f8d 0%, #4a90c8 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-cta-final {
    font-size: 1.2rem;
    padding: 18px 50px;
}

.contact-info {
    margin-top: 30px;
    font-size: 1.1rem;
}

.contact-info a {
    color: white;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.separator {
    margin: 0 15px;
    opacity: 0.5;
}

.location-info {
    margin-top: 20px;
    font-size: 1rem;
    opacity: 0.9;
}

.location-info i {
    margin-right: 8px;
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: #1a3a52;
    color: white;
    padding: 50px 0 30px;
}

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

.footer-info h3,
.footer-links h4,
.footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.footer-info p,
.footer-contact p {
    margin-bottom: 8px;
    opacity: 0.9;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
    color: white;
    opacity: 0.9;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-contact i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 30px;
}

/* ================================
   SCROLL TO TOP BUTTON
   ================================ */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(44, 95, 141, 0.4);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 95, 141, 0.5);
}

.scroll-top-btn.visible {
    display: flex;
}

/* ================================
   WHATSAPP FLOATING BUTTON
   ================================ */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
    z-index: 1000;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        max-width: 400px;
        margin: 0 auto;
        position: static;
    }
    
    .reassurance-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 50px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 60px 0;
    }
    
    .hero-badge {
        padding: 10px 20px;
    }
    
    .hero-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .info-badge {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .problems-grid,
    .benefits-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 20px;
    }
    
    .timeline-number {
        margin: 0 auto;
    }
    
    .process-followup {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1.05rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    .value-item {
        width: 100%;
        justify-content: center;
    }
    
    .final-cta h2 {
        font-size: 1.8rem;
    }
    
    .final-cta p {
        font-size: 1.1rem;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .separator {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .btn-lg {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .problem-card,
    .benefit-card,
    .value-card {
        padding: 25px;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .offer-card {
        padding: 30px 20px;
    }
}