.elementor-695 .elementor-element.elementor-element-1e8d751{--display:flex;}/* Start custom CSS for html, class: .elementor-element-e55f0b6 *//* Estilos generales */
:root {
    --primary: #2c7fbe;
    --secondary: #1a4c75;
    --accent: #e74c3c;
    --light: #f8f9fa;
    --dark: #343a40;
    --success: #28a745;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #343a40;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background: #e74c3c;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
    text-align: center;
    font-size: 18px;
}

.btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.text-center {
    text-align: center;
}

.section {
    padding: 60px 0;
}

.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a4c75;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #343a40;
}

.counter {
    display: inline-block;
    background: #28a745;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    margin: 15px 0;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    background: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.local-badge {
    display: inline-flex;
    align-items: center;
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    margin: 5px;
    font-size: 0.9rem;
}

.towns-list {
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.towns-list span {
    background: #f1f1f1;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(37,211,102,0.5);
    animation: pulse 2s infinite;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37,211,102,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .section {
        padding: 40px 0;
    }
    .hero {
        padding: 60px 0 40px;
    }
    .hero-content {
        flex-direction: column;
    }
    .hero-text {
        order: 2;
    }
    .hero-media {
        order: 1;
        margin-bottom: 30px;
    }
    .btn {
        width: 100%;
        max-width: 300px;
        padding: 12px 25px;
        font-size: 16px;
    }
    .btn-whatsapp {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

.lazy {
    opacity: 0;
    transition: opacity .3s;
}

.loaded {
    opacity: 1;
}

/* Estilos para beneficios */
.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Estilos para el proceso */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.process-step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
}

.process-step h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Estilos para testimonios con fotos */
.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.testimonial-info {
    flex: 1;
}

.testimonial-info strong {
    display: block;
    color: var(--secondary);
}

.testimonial-stars {
    color: #ffc107;
    margin-top: 5px;
}

/* Estilos para FAQs */
.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px;
    background: white;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding-right: 50px;
}

.faq-question:after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--primary);
}

.faq-answer {
    padding: 0 20px;
    background: white;
    display: none;
    padding-bottom: 20px;
}

/* Estilos para CTA final */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

/* Estilos para marketplace */
.marketplace-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.marketplace-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.marketplace-features {
    margin: 20px 0;
}

.marketplace-feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    text-align: left;
}

.marketplace-feature svg {
    margin-right: 10px;
    flex-shrink: 0;
}

.marketplace-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 20px 0;
}

.btn-marketplace {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
}

/* Nuevos estilos para la sección modificada */
.process-infographic {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.infographic-step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 25px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.infographic-step:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.infographic-step h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.infographic-step p {
    color: var(--dark);
    font-size: 0.95rem;
}

.local-testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 40px 0 20px;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
    padding: 0 15px;
}

.testimonial-content p:before {
    content: """;
    position: absolute;
    left: -5px;
    top: -15px;
    font-size: 50px;
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.testimonial-author strong {
    display: block;
    color: var(--secondary);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: #666;
}

@media (max-width: 768px) {
    .process-infographic {
        gap: 20px;
    }
    .infographic-step {
        min-width: 100%;
    }
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    .testimonial-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
}/* End custom CSS */