/* =====================================================
   DESBROCES ALICANTE - ESTILOS MEJORADOS 2026
   DiseÃ±o moderno, UX optimizada, SEO local
   ===================================================== */

/* Reset y Variables */
:root {
    --primary: #22c55e;
    --primary-dark: #16a34a;
    --primary-light: #86efac;
    --secondary: #0ea5e9;
    --text: #1e293b;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --border: #e2e8f0;
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

/* Header */
.header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo img {
    height: 57px;
    width: auto;
    max-width: 300px;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    border: 1px solid var(--border);
    background: var(--bg);
    border-radius: 14px;
    padding: 10px 12px;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.nav-toggle:focus {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
}

.nav-toggle-lines {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle-lines span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
}

.nav-link.active {
    color: var(--primary);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline,
.btn-primary-large, .btn-secondary-large {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    justify-content: center;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

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

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

.btn-primary-large {
    background: var(--primary);
    color: white;
    padding: 16px 32px;
    font-size: 18px;
}

.btn-primary-large:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.btn-secondary-large {
    background: white;
    color: var(--text);
    border: 2px solid var(--border);
    padding: 16px 32px;
    font-size: 18px;
}

.btn-secondary-large:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    padding: 80px 0;
}

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

.hero-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-weight: 500;
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-note {
    font-size: 14px;
    color: var(--text-light);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.hero-badge-float {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 20px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

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

.badge-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.badge-text {
    display: block;
    font-size: 14px;
    color: var(--text-light);
}

/* Trust Bar */
.trust-bar {
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-weight: 500;
}

.trust-icon {
    width: 28px;
    height: 28px;
    color: var(--primary);
    flex-shrink: 0;
}

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

.section-alt {
    background: var(--bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text);
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-dark);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 8px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.pricing-grid--2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

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

.pricing-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-surface {
    color: var(--text-light);
    font-size: 16px;
}

.pricing-price {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.price-amount {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.price-unit {
    font-size: 18px;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: var(--text);
}

.pricing-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 20px;
}

.pricing-note {
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.pricing-note p {
    color: var(--text);
}

.pricing-note strong {
    color: var(--text);
}

.pricing-note a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 24px;
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.star {
    width: 20px;
    height: 20px;
    color: #fbbf24;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 700;
    color: var(--text);
}

.author-location {
    font-size: 14px;
    color: var(--text-light);
}

/* Zones */
.zones-intro {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
    font-size: 18px;
    color: var(--text);
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

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

.zone-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.zone-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.zone-card p {
    font-size: 14px;
    color: var(--text-light);
}

.zones-note {
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
    border: 2px dashed var(--border);
}

.zones-note p {
    color: var(--text);
    font-size: 16px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

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

.benefit-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-dark);
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 16px;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.process-card {
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.process-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.process-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-card p {
    color: var(--text-light);
    font-size: 15px;
}

.process-arrow {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.process-arrow svg {
    width: 100%;
    height: 100%;
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    color: white;
}

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

.cta-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-question {
    padding: 24px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:after {
    content: "+";
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.faq-item[open] .faq-question:after {
    content: "âˆ’";
}

.faq-answer {
    padding: 0 24px 24px;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--text);
    color: #cbd5e1;
    padding: 60px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
    filter: none !important;
    mix-blend-mode: normal;
    opacity: 1;
}

.footer-text {
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.star-small {
    width: 16px;
    height: 16px;
    color: #fbbf24;
}

.rating-text {
    font-size: 14px;
}

.footer h4 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.footer-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-list a:hover {
    color: white;
}

.footer-hours {
    margin-top: 16px;
    font-size: 14px;
}

.footer-zones {
    columns: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #334155;
}

.footer-bottom p {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-note {
    font-size: 13px;
    opacity: 0.8;
}


.footer-credit {
    margin: 0 0 10px;
    font-size: 14px;
    opacity: 0.9;
}

.footer-credit a {
    text-decoration: underline;
    text-underline-offset: 3px;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .services-grid,
    .pricing-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav {
        display: none;
        position: fixed;
        top: 84px;
        left: 16px;
        right: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 16px;
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 18px;
        box-shadow: 0 20px 45px rgba(0,0,0,.18);
        z-index: 999;
    }

    .nav.is-open {
        display: flex;
    }

    .nav .btn-primary,
    .nav .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .trust-items {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .zones-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .process-arrow {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .trust-items {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-featured {
        transform: scale(1);
    }
}
/* =====================================================
   PÃGINAS INTERNAS (precios / cÃ³mo trabajamos / servicios)
   Utilidades y componentes para secciones internas
   ===================================================== */

.hero-small{
    padding: 56px 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}
.hero-small h1{
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin: 0 0 10px 0;
}
.lead{
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    max-width: 72ch;
}

/* Utilidades grid */
.grid-2, .grid-3{
    display: grid;
    gap: 24px;
}
.grid-2{ grid-template-columns: repeat(2, 1fr); }
.grid-3{ grid-template-columns: repeat(3, 1fr); }

@media (max-width: 900px){
    .grid-3{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 650px){
    .grid-2, .grid-3{ grid-template-columns: 1fr; }
}

/* Padding de secciones internas */
.proceso-trabajo,
.maquinaria-equipo,
.nuestro-equipo,
.compromisos,
.casos-especiales,
.faq-trabajo,
.cta-trabajo,
.precios-detalle,
.faq-precios,
.cta-final,
.limpieza-fincas-contenido,
.servicios-finca,
.tipos-fincas,
.beneficios-limpieza,
.proceso-fincas,
.normativa-fincas,
.mantenimiento-periodico,
.casos-reales-fincas,
.faq-fincas,
.cta-fincas{
    padding: 72px 0;
}

.maquinaria-equipo,
.beneficios-limpieza,
.mantenimiento-periodico,
.faq-trabajo,
.faq-precios,
.faq-fincas{
    background: var(--bg-alt);
}

/* Intro centrado */
.intro-proceso,
.intro-precios,
.intro-limpieza{
    max-width: 860px;
    margin: 0 auto 32px auto;
    text-align: center;
}

/* Tarjetas internas (estilo consistente) */
.paso,
.maquina-card,
.equipo-item,
.compromiso-card,
.caso-especial,
.factor-card,
.garantia-item,
.ventaja,
.servicio-finca,
.tipo-finca,
.beneficio-card,
.plan-card,
.caso-finca{
    background: white;
    padding: 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

/* CÃ³mo trabajamos: pasos */
.pasos-proceso{
    display: grid;
    gap: 18px;
}
.paso{
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    align-items: start;
}
.paso-numero{
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-top: 4px;
}
.paso-contenido h3{ margin: 0 0 8px 0; }
.paso-contenido p{ margin: 0 0 10px 0; color: var(--text); }
.paso-contenido ul{
    margin: 12px 0 0 0;
    padding-left: 18px;
    color: var(--text);
}
.paso-contenido li{ margin: 6px 0; color: var(--text-light); }
.duracion{
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--bg-alt);
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Botones CTA usados en pÃ¡ginas internas */
.cta-button-large, .cta-button-secondary{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    border: none;
}
.cta-button-large{
    background: var(--primary);
    color: white;
}
.cta-button-large:hover{ background: var(--primary-dark); }

.cta-button-secondary{
    background: white;
    color: var(--text);
    border: 2px solid var(--border);
}
.cta-button-secondary:hover{
    border-color: var(--primary);
    color: var(--primary-dark);
}

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

.botones-contacto{
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Ajustes pequeÃ±os */
.icon, .icon-grande, .icon-compromiso{ margin-bottom: 10px; }
.alerta-normativa{
    background: #fff7ed;
    border: 1px solid #fed7aa;
    padding: 18px;
    border-radius: var(--radius);
}
.badge-plan{
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: #ecfeff;
    border: 1px solid #a5f3fc;
    color: #0e7490;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 10px;
}
.precio-plan{
    font-size: 1.25rem;
    font-weight: 800;
    margin-top: 12px;
}



