/**
 * Servicios Page Styles
 * CSS extraído de page-servicios.php para mejor rendimiento (Core Web Vitals)
 *
 * @package GNS_Advisory
 */

/* === PAGE SERVICIOS - ESTILOS === */
.page-servicios {
    font-family: 'Inter Tight', sans-serif;
    background: #ffffff;
    color: #000000;
}

.page-servicios * {
    box-sizing: border-box;
}

/* Container Global */
.page-servicios .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero */
.servicios-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    position: relative;
    text-align: center;
}

.servicios-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(192, 192, 192, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(169, 169, 169, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.servicios-hero .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 2rem;
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #4a4a4a;
}

.breadcrumb li:not(:last-child)::after {
    content: '→';
    margin-left: 0.5rem;
    color: #4a4a4a;
}

.breadcrumb a {
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #1a1a1a;
}

/* Bloque SEO Hero */
.hero-seo-block {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.hero-seo-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.hero-seo-text {
    flex: 1;
}

.hero-seo-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.hero-seo-subtitle {
    font-size: 0.85rem;
    color: #2a2a2a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hero-seo-description {
    font-size: 0.75rem;
    color: #495057;
    line-height: 1.5;
}

.hero-seo-logo {
    flex-shrink: 0;
}

.hero-seo-logo img {
    max-width: 300px;
    height: auto;
}

.servicios-hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #000000 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    text-align: center;
    margin-top: 2rem;
}

.servicios-hero-subtitle-visual {
    font-size: 1.35rem;
    color: #2a2a2a;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: center;
}

/* Hook de Seccion */
.section-hook {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Hook dentro de cards */
.servicio-hook {
    font-size: 1.15rem;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
    font-style: italic;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

/* Bloques SEO */
.section-seo-block {
    background: #f8f9fa;
    border-left: 4px solid #1a1a1a;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
    text-align: left;
}

.section-seo-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.section-seo-intro {
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.7;
}

.section-seo-intro a {
    color: #1a1a1a;
    text-decoration: underline;
}

/* Selector */
.servicios-selector {
    padding: 4rem 0;
    background: #ffffff;
    text-align: center;
}

.servicios-selector .container {
    max-width: 1000px;
}

.servicios-selector > .container > p {
    color: #4a4a4a;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Selector Links */
.selector-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.selector-link {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    border: 2px solid #1a1a1a;
    transition: all 0.3s ease;
    text-align: center;
}

.selector-link:hover {
    background: #ffffff;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Contenido Servicios */
.servicios-content {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.servicios-content .container {
    max-width: 1200px;
}

.servicios-content-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.servicios-content-header p {
    color: #2a2a2a;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Grid de Servicios */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Grid variantes por columnas */
.servicios-grid.servicios-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.servicios-grid.servicios-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* Section CTA Wrapper */
.section-cta-wrapper {
    text-align: center;
    margin-top: 3rem;
}

/* === LAYOUT 2 COLUMNAS SERVICIOS === */
.servicios-layout-2col {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.servicios-2col-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.servicios-2col-wrapper.servicios-2col-reverse {
    grid-template-columns: 1.5fr 1fr;
}

.servicios-col-text {
    position: sticky;
    top: 120px;
}

.servicios-col-text .section-seo-block {
    background: transparent;
    border-left: 4px solid #1a1a1a;
    padding: 0 0 0 2rem;
    margin-bottom: 2rem;
    border-radius: 0;
}

.servicios-col-text .section-seo-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.servicios-col-text .section-seo-intro {
    font-size: 1rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.servicios-col-text .section-seo-intro:last-of-type {
    margin-bottom: 0;
}

.servicios-col-text .section-cta-wrapper {
    text-align: left;
    margin-top: 2rem;
}

.servicios-col-cards .servicios-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.servicios-col-cards .servicios-grid.servicios-grid-vertical {
    grid-template-columns: 1fr;
}

.servicios-col-cards .servicio-card {
    padding: 2rem;
}

.servicios-col-cards .servicio-card h3 {
    font-size: 1.25rem;
}

.servicios-col-cards .servicio-hook {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
}

/* Responsive layout 2 columnas */
@media (max-width: 1024px) {
    .servicios-2col-wrapper,
    .servicios-2col-wrapper.servicios-2col-reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .servicios-col-text {
        position: relative;
        top: 0;
    }

    .servicios-2col-wrapper.servicios-2col-reverse .servicios-col-text {
        order: -1;
    }

    .servicios-col-cards .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .servicios-col-cards .servicios-grid {
        grid-template-columns: 1fr;
    }

    .servicios-col-text .section-seo-title {
        font-size: 1.5rem;
    }
}

/* Proceso Grid y Steps */
.proceso-grid {
    grid-template-columns: repeat(4, 1fr);
}

.proceso-step {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.proceso-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.proceso-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.proceso-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.proceso-step p {
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.7;
}

.servicio-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

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

.servicio-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.servicio-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.servicio-card > p {
    color: #2a2a2a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1rem;
}

/* Variante error para cards de advertencia */
.servicio-card.error-card {
    border-left: 4px solid #dc3545;
}

.servicio-card.error-card:hover {
    border-left-color: #c82333;
}

.servicio-includes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.servicio-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #495057;
    font-size: 0.95rem;
}

.servicio-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
}

/* Estructuras */
.servicios-estructuras {
    padding: 5rem 0;
    background: #ffffff;
    text-align: center;
}

.servicios-estructuras .container {
    max-width: 1100px;
}

.servicios-estructuras > .container > p {
    color: #4a4a4a;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.estructuras-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.estructura-card {
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #1a1a1a;
    transition: transform 0.3s ease;
    text-align: left;
}

.estructura-card:hover {
    transform: translateX(8px);
}

.estructura-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.estructura-subtitle {
    color: #4a4a4a;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.estructura-card > p {
    color: #2a2a2a;
    line-height: 1.8;
    font-size: 1rem;
}

.estructura-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
}

.detail-item {
    background: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #2a2a2a;
}

/* SEO Narrative Section */
.seo-narrative-section {
    padding: 5rem 0;
    background: #ffffff;
}

.seo-narrative-section .container {
    max-width: 900px;
}

.seo-narrative-content .section-seo-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
    text-align: center;
    line-height: 1.4;
}

.seo-narrative-block {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e9ecef;
}

.seo-narrative-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.seo-narrative-block h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.seo-narrative-block p {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.seo-narrative-block p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .seo-narrative-content .section-seo-title {
        font-size: 1.5rem;
    }

    .seo-narrative-block h3 {
        font-size: 1.2rem;
    }

    .seo-narrative-block p {
        font-size: 1rem;
    }
}

/* SEO Info Section */
.seo-info-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.seo-info-section .container {
    max-width: 900px;
}

.seo-info-header {
    margin-bottom: 3rem;
    text-align: center;
}

.seo-info-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.seo-info-header > p {
    color: #495057;
    line-height: 1.8;
    font-size: 1rem;
}

.seo-info-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.seo-info-block {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    text-align: left;
}

.seo-info-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.seo-info-block p {
    color: #495057;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.seo-info-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.seo-info-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #495057;
    line-height: 1.7;
    border-bottom: 1px solid #f1f3f4;
}

.seo-info-list li:last-child {
    border-bottom: none;
}

.seo-info-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
}

.seo-info-list li strong {
    color: #1a1a1a;
}

/* CTA */
.servicios-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.servicios-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(192, 192, 192, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(169, 169, 169, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.servicios-cta .container {
    position: relative;
    z-index: 1;
}

.servicios-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.servicios-cta-content .cta-photo-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin: 0 auto 2rem;
}

.servicios-cta-content .cta-photo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.servicios-cta-content h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-seo-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.servicios-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.servicios-cta-content .cta-emphasis {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.servicios-cta-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem 0;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
}

.price-detail {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.servicios-cta-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.cta-slots {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1.5rem;
    font-style: italic;
}

/* CTA Section (inline en paginas) */
.servicios-cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
}

.servicios-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(192, 192, 192, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(169, 169, 169, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.servicios-cta-section .container {
    position: relative;
    z-index: 1;
}

.servicios-cta-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.servicios-cta-wrapper .cta-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    object-fit: cover;
}

.servicios-cta-wrapper h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.servicios-cta-wrapper .cta-intro {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

body .page-servicios .btn-primary,
body .servicios-hub-page .btn-primary,
body .page-servicios .btn.btn-primary,
body .servicios-hub-page .btn.btn-primary {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    background: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #1a1a1a !important;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

body .page-servicios .btn-primary:hover,
body .servicios-hub-page .btn-primary:hover,
body .page-servicios .btn.btn-primary:hover,
body .servicios-hub-page .btn.btn-primary:hover {
    background: #FF0000 !important;
    color: #ffffff !important;
    border-color: #FF0000 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
}

/* Animations */
.page-servicios .animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.page-servicios .animate-on-scroll.animate-visible {
    opacity: 1;
    transform: none;
}

.page-servicios .fade-up {
    transform: translateY(40px);
}

.page-servicios .fade-up.animate-visible {
    transform: translateY(0);
}

.page-servicios .slide-fade {
    transform: translateY(30px) scale(0.97);
}

.page-servicios .slide-fade.animate-visible {
    transform: translateY(0) scale(1);
}

.page-servicios .zoom-in {
    transform: scale(0.9);
}

.page-servicios .zoom-in.animate-visible {
    transform: scale(1);
}

.page-servicios .animate-on-scroll.stagger-1 { transition-delay: 0.1s; }
.page-servicios .animate-on-scroll.stagger-2 { transition-delay: 0.2s; }
.page-servicios .animate-on-scroll.stagger-3 { transition-delay: 0.3s; }
.page-servicios .animate-on-scroll.stagger-4 { transition-delay: 0.4s; }

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .servicios-grid,
    .estructuras-grid {
        grid-template-columns: 1fr;
    }

    .servicios-grid.servicios-grid-3 {
        grid-template-columns: 1fr;
    }

    .servicios-grid.servicios-grid-2 {
        grid-template-columns: 1fr;
    }

    .proceso-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-seo-content {
        flex-direction: column;
    }

    .hero-seo-logo {
        order: -1;
        margin-bottom: 1rem;
    }

    .servicios-cta-wrapper h2 {
        font-size: 1.75rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .servicios-hero {
        padding: 80px 0 40px;
    }

    .servicios-hero-title {
        font-size: 2rem;
    }

    .servicios-hero-subtitle-visual {
        font-size: 1.1rem;
    }

    .selector-links {
        flex-direction: column;
        gap: 1rem;
    }

    .selector-link {
        width: 100%;
        padding: 1rem 1.5rem;
    }

    .section-hook {
        font-size: 1.4rem;
    }

    .servicio-card,
    .estructura-card,
    .seo-info-block {
        padding: 1.5rem;
    }

    .servicios-cta-content .cta-photo-circle {
        width: 120px;
        height: 120px;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
        display: block;
    }

    .proceso-grid {
        grid-template-columns: 1fr;
    }

    .proceso-step {
        padding: 1.5rem;
    }

    .servicios-cta-wrapper .cta-photo {
        width: 100px;
        height: 100px;
    }
}

/* ==========================================================================
   PAGE CREAR EMPRESA SUIZA - ESTILOS ESPECIFICOS
   ========================================================================== */

/* CTA Note */
.cta-note {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Razones Grid - 5 items centrados */
.razones-grid {
    max-width: 1100px;
    margin: 0 auto;
}

.razones-grid.servicios-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (min-width: 1025px) {
    .razones-grid.servicios-grid-3 .servicio-card:nth-child(4),
    .razones-grid.servicios-grid-3 .servicio-card:nth-child(5) {
        grid-column: span 1;
    }

    .razones-grid.servicios-grid-3 {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 2rem;
    }

    .razones-grid.servicios-grid-3 .servicio-card:nth-child(1),
    .razones-grid.servicios-grid-3 .servicio-card:nth-child(2),
    .razones-grid.servicios-grid-3 .servicio-card:nth-child(3) {
        grid-column: span 2;
    }

    .razones-grid.servicios-grid-3 .servicio-card:nth-child(4) {
        grid-column: 2 / span 2;
    }

    .razones-grid.servicios-grid-3 .servicio-card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

/* Errores Grid */
.errores-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.error-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.error-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at left center, rgba(231, 76, 60, 0.05) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.error-card:hover {
    transform: translateX(10px);
    border-color: #e74c3c;
    box-shadow: 0 12px 40px rgba(231, 76, 60, 0.15);
}

.error-card:hover::before {
    opacity: 1;
}

.error-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.error-card:hover .error-number {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
}

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

.error-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.error-content p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin: 0;
}

.error-content p a {
    color: #1a1a1a;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.error-content p a:hover {
    color: #e74c3c;
}

/* Tabla estructuras links */
.tabla-estructuras a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.tabla-estructuras a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.tabla-estructuras tbody a {
    color: #1a1a1a;
}

.tabla-estructuras tbody a:hover {
    color: #2ecc71;
}

/* Responsive Errores */
@media (max-width: 768px) {
    .error-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
    }

    .error-number {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .error-content h3 {
        font-size: 1.1rem;
    }

    .error-card:hover {
        transform: translateY(-5px);
    }

    .razones-grid.servicios-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Categoria page specific styles */
.servicios-categoria-page .section-cta-wrapper p {
    margin-bottom: 1.5rem;
}

.servicios-categoria-page .section-cta-wrapper p a {
    color: #1a1a1a;
    text-decoration: underline;
    font-weight: 600;
}

.servicios-categoria-page .section-cta-wrapper p a:hover {
    color: #2ecc71;
}

/* CTA Section mejorada */
.page-crear-empresa-suiza .servicios-cta-wrapper .cta-content {
    max-width: 700px;
    margin: 0 auto 2rem;
    text-align: left;
}

.page-crear-empresa-suiza .servicios-cta-wrapper .cta-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.page-crear-empresa-suiza .servicios-cta-wrapper .cta-content p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   HERO STATS SECTION - Estadisticas destacadas debajo del hero
   ========================================================================== */

.hero-stats-section {
    padding: 3rem 0 4rem;
    background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
    position: relative;
}

.hero-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 2.5rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.hero-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top center, rgba(192, 192, 192, 0.1) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-stat:hover {
    transform: translateY(-8px);
    border-color: #1a1a1a;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}

.hero-stat:hover::before {
    opacity: 1;
}

.hero-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 16px;
    margin-bottom: 1.25rem;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-stat:hover .hero-stat-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.hero-stat-icon svg {
    width: 32px;
    height: 32px;
}

.hero-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #000000 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 1rem;
    color: #4a4a4a;
    font-weight: 600;
}

.hero-cta-wrapper {
    text-align: center;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .hero-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-stat {
        padding: 1.5rem;
    }

    .hero-stat-value {
        font-size: 2rem;
    }

    .hero-stat-icon {
        width: 56px;
        height: 56px;
    }
}

/* ==========================================================================
   TABLAS COMPARATIVAS MEJORADAS
   ========================================================================== */

.tabla-comparativa-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    border: 1px solid #e0e0e0;
}

.tabla-titulo {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tabla-comparativa {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.tabla-comparativa thead {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.tabla-comparativa thead th {
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 700;
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-bottom: 3px solid #000000;
}

.tabla-comparativa thead th:first-child {
    border-radius: 15px 0 0 0;
}

.tabla-comparativa thead th:last-child {
    border-radius: 0 15px 0 0;
}

.tabla-comparativa tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.tabla-comparativa tbody tr:last-child {
    border-bottom: none;
}

.tabla-comparativa tbody tr:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.tabla-comparativa tbody td {
    padding: 1.15rem 1rem;
    color: #2a2a2a;
    vertical-align: middle;
    line-height: 1.6;
}

.tabla-comparativa tbody td:first-child {
    font-weight: 600;
    color: #1a1a1a;
    background: rgba(248, 249, 250, 0.5);
}

.tabla-comparativa tbody tr:nth-child(even) {
    background: rgba(248, 249, 250, 0.3);
}

.tabla-comparativa tbody tr:nth-child(even):hover {
    background: linear-gradient(135deg, #f0f0f0 0%, #f8f9fa 100%);
}

/* Tabla responsive para movil */
@media (max-width: 768px) {
    .tabla-comparativa {
        font-size: 0.85rem;
    }

    .tabla-comparativa thead th,
    .tabla-comparativa tbody td {
        padding: 0.875rem 0.75rem;
    }

    .tabla-comparativa thead th:first-child,
    .tabla-comparativa thead th:last-child {
        border-radius: 0;
    }

    /* Scroll horizontal con indicador visual */
    .tabla-comparativa-wrapper {
        position: relative;
    }

    .tabla-comparativa-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 30px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9));
        pointer-events: none;
    }
}

/* ==========================================================================
   TIMELINE PROCESO - Diseno vertical moderno
   ========================================================================== */

.proceso-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 2rem auto;
    position: relative;
    padding-left: 80px;
}

.proceso-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 30px;
    bottom: 30px;
    width: 4px;
    background: linear-gradient(180deg, #1a1a1a 0%, #c0c0c0 50%, #1a1a1a 100%);
    border-radius: 4px;
}

.proceso-timeline .proceso-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
}

.proceso-timeline .proceso-step:hover {
    transform: translateX(10px);
    border-color: #1a1a1a;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.proceso-timeline .proceso-number {
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin: 0;
}

.proceso-timeline .proceso-step:hover .proceso-number {
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.proceso-timeline .proceso-content {
    flex: 1;
}

.proceso-timeline .proceso-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.proceso-timeline .proceso-content p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .proceso-timeline {
        padding-left: 60px;
    }

    .proceso-timeline::before {
        left: 20px;
    }

    .proceso-timeline .proceso-number {
        left: -60px;
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .proceso-timeline .proceso-step {
        padding: 1.25rem;
    }

    .proceso-timeline .proceso-content h3 {
        font-size: 1.1rem;
    }

    .proceso-timeline .proceso-step:hover {
        transform: translateX(5px);
    }
}

/* ==========================================================================
   HIGHLIGHT BOX - Cajas destacadas de informacion
   ========================================================================== */

.highlight-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e0e0e0;
    border-left: 5px solid #2ecc71;
    border-radius: 0 16px 16px 0;
    padding: 1.75rem 2rem;
    margin: 2rem 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at left center, rgba(46, 204, 113, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.highlight-box:hover {
    border-color: #2ecc71;
    box-shadow: 0 12px 35px rgba(46, 204, 113, 0.12);
}

.highlight-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2a2a2a;
    margin: 0;
    position: relative;
    z-index: 1;
}

.highlight-box p strong {
    color: #1a1a1a;
}

/* Variantes de highlight-box */
.highlight-box.success {
    border-left-color: #28a745;
    background: linear-gradient(135deg, #f0fff4 0%, #ffffff 100%);
}

.highlight-box.success::before {
    background: radial-gradient(circle at left center, rgba(40, 167, 69, 0.05) 0%, transparent 60%);
}

.highlight-box.success:hover {
    border-color: #28a745;
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.12);
}

.highlight-box.warning {
    border-left-color: #ffc107;
    background: linear-gradient(135deg, #fffbf0 0%, #ffffff 100%);
}

.highlight-box.warning::before {
    background: radial-gradient(circle at left center, rgba(255, 193, 7, 0.05) 0%, transparent 60%);
}

.highlight-box.warning:hover {
    border-color: #ffc107;
    box-shadow: 0 12px 35px rgba(255, 193, 7, 0.12);
}

.highlight-box.error {
    border-left-color: #dc3545;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.highlight-box.error::before {
    background: radial-gradient(circle at left center, rgba(220, 53, 69, 0.05) 0%, transparent 60%);
}

.highlight-box.error:hover {
    border-color: #dc3545;
    box-shadow: 0 12px 35px rgba(220, 53, 69, 0.12);
}

/* ==========================================================================
   REQUISITOS GRID Y LISTA
   ========================================================================== */

.requisitos-grid {
    max-width: 900px;
    margin: 2rem auto;
}

.requisitos-lista {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.requisitos-lista li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1.7;
    color: #2a2a2a;
}

.requisitos-lista li:hover {
    transform: translateX(8px);
    border-color: #2ecc71;
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.1);
}

.requisitos-lista li::before {
    content: '✓';
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.requisitos-lista li strong {
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .requisitos-grid {
        margin: 1.5rem auto;
        padding: 0 0.5rem;
    }

    .requisitos-lista {
        gap: 0.75rem;
    }

    .requisitos-lista li {
        padding: 1rem;
        font-size: 0.9rem;
        line-height: 1.6;
        gap: 0.75rem;
        border-radius: 10px;
    }

    .requisitos-lista li:hover {
        transform: none;
    }

    .requisitos-lista li::before {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
        margin-top: 2px;
    }

    .highlight-box {
        padding: 1.25rem 1rem;
        margin: 1.5rem auto;
        border-radius: 0 12px 12px 0;
    }

    .highlight-box p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .requisitos-grid {
        padding: 0;
    }

    .requisitos-lista li {
        padding: 0.875rem;
        font-size: 0.85rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .requisitos-lista li::before {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }

    .highlight-box {
        padding: 1rem 0.875rem;
        border-left-width: 4px;
    }

    .highlight-box p {
        font-size: 0.875rem;
    }
}

/* ==========================================================================
   SERVICIOS CATEGORIAS GRID - Cards de tipos de empresa
   ========================================================================== */

.servicios-categorias-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 2rem auto;
}

.servicios-categorias-grid .estructura-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #e0e0e0;
    border-left: 5px solid #c0c0c0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.servicios-categorias-grid .estructura-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(192, 192, 192, 0.08) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.servicios-categorias-grid .estructura-card:hover {
    transform: translateY(-8px);
    border-color: #1a1a1a;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}

.servicios-categorias-grid .estructura-card:hover::before {
    opacity: 1;
}

.servicios-categorias-grid .servicio-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.servicios-categorias-grid .estructura-card:hover .servicio-icon {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.servicios-categorias-grid .estructura-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.servicios-categorias-grid .estructura-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.servicios-categorias-grid .estructura-card h3 a:hover {
    color: #2ecc71;
}

.servicios-categorias-grid .estructura-card > p {
    color: #4a4a4a;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.servicios-categorias-grid .estructura-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.25rem 0;
}

.servicios-categorias-grid .detail-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    border: 1px solid #dee2e6;
}

.servicios-categorias-grid .btn-secondary {
    margin-top: auto;
}

@media (max-width: 768px) {
    .servicios-categorias-grid {
        grid-template-columns: 1fr;
    }

    .servicios-categorias-grid .estructura-card {
        padding: 2rem;
    }
}

/* ==========================================================================
   BOTONES SECUNDARIOS
   ========================================================================== */

body .page-servicios .btn-secondary,
body .servicios-hub-page .btn-secondary,
body .page-servicios .btn.btn-secondary,
body .servicios-hub-page .btn.btn-secondary {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    background: #f0f0f0 !important;
    color: #000000 !important;
    border: 2px solid #1a1a1a !important;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

body .page-servicios .btn-secondary:hover,
body .servicios-hub-page .btn-secondary:hover,
body .page-servicios .btn.btn-secondary:hover,
body .servicios-hub-page .btn.btn-secondary:hover {
    background: #FF0000 !important;
    color: #ffffff !important;
    border-color: #FF0000 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.35);
}

/* ==========================================================================
   FAQ SECTION MEJORADA
   ========================================================================== */

.faq-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.faq-list {
    max-width: 900px;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    border-color: #c0c0c0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.faq-item.active {
    border-color: #1a1a1a;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 3.5rem 1.5rem 1.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #1a1a1a;
    position: relative;
    transition: all 0.3s ease;
    font-family: inherit;
    line-height: 1.5;
}

.faq-question:hover {
    color: #000000;
    background: rgba(248, 249, 250, 0.5);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.75rem;
    font-weight: 300;
    color: #4a4a4a;
    transition: all 0.3s ease;
    line-height: 1;
}

.faq-item.active .faq-question::after {
    content: '−';
    color: #1a1a1a;
}

.faq-answer {
    padding: 0 1.75rem 1.5rem;
    color: #4a4a4a;
    line-height: 1.8;
    font-size: 1rem;
    border-top: 1px solid #f0f0f0;
    background: rgba(248, 249, 250, 0.3);
}

.faq-answer p {
    margin-bottom: 1rem;
}

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

.faq-answer strong {
    color: #1a1a1a;
}

.faq-answer a {
    color: #1a1a1a;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: #2ecc71;
}

/* ==========================================================================
   CTA FINAL MEJORADO - Con foto de Alejandra
   ========================================================================== */

.servicios-cta-section .servicios-cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
    padding: 1rem 0;
}

.servicios-cta-section .cta-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 5px solid #ffffff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    margin-bottom: 2rem;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.servicios-cta-section .cta-photo:hover {
    transform: scale(1.08);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
}

.servicios-cta-section .servicios-cta-wrapper h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.servicios-cta-section .cta-content {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    text-align: left;
}

.servicios-cta-section .cta-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.servicios-cta-section .cta-content p:last-child {
    margin-bottom: 0;
}

.servicios-cta-section .cta-content p strong {
    color: #ffffff;
}

.servicios-cta-section .servicios-cta-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.servicios-cta-section .price-amount {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.servicios-cta-section .price-detail {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
}

body .servicios-cta-section .btn-primary,
body .servicios-cta-section .btn.btn-primary,
body .servicios-cta-section a.btn-primary,
body .servicios-cta-section a.btn.btn-primary {
    padding: 1.35rem 3rem;
    font-size: 1.15rem;
    margin-top: 1rem;
    background: #ffffff !important;
    color: #000000 !important;
    border: 2px solid #ffffff !important;
}

body .servicios-cta-section .btn-primary:hover,
body .servicios-cta-section .btn.btn-primary:hover,
body .servicios-cta-section a.btn-primary:hover,
body .servicios-cta-section a.btn.btn-primary:hover {
    background: #FF0000 !important;
    color: #ffffff !important;
    border-color: #FF0000 !important;
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.5);
}

.servicios-cta-section .cta-slots {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

@media (max-width: 768px) {
    .servicios-cta-section .servicios-cta-wrapper h2 {
        font-size: 1.75rem;
    }

    .servicios-cta-section .cta-photo {
        width: 120px;
        height: 120px;
    }

    .servicios-cta-section .price-amount {
        font-size: 3rem;
    }

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

/* ==========================================================================
   SECCIONES ALTERNADAS
   ========================================================================== */

.section-alt {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(192, 192, 192, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(169, 169, 169, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* ==========================================================================
   TABLA CANTONES MEJORADA
   ========================================================================== */

.tabla-cantones .tabla-comparativa tbody td:nth-child(2) {
    font-weight: 700;
    color: #2ecc71;
}

.tabla-cantones .tabla-comparativa tbody td:nth-child(4) {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
}

/* ==========================================================================
   ANIMACIONES Y EFECTOS ADICIONALES
   ========================================================================== */

/* Efecto shine para cards */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 70%
    );
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.shine-effect:hover::after {
    transform: translateX(100%) rotate(45deg);
}

/* Shadow grow en hover */
.shadow-grow {
    transition: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.shadow-grow:hover {
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}

/* Pulse para CTAs */
.pulse-hover {
    transition: transform 0.3s ease;
}

.pulse-hover:hover {
    animation: pulse 1s ease infinite;
}

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

/* Gradient text animate */
.gradient-text-animate {
    background: linear-gradient(90deg, #ffffff, #c0c0c0, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Counter glow effect */
.counter-glow {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Stagger adicionales */
.page-servicios .animate-on-scroll.stagger-5 { transition-delay: 0.5s; }
.page-servicios .animate-on-scroll.stagger-6 { transition-delay: 0.6s; }

/* ==========================================================================
   SERVICIOS CONTENT BODY - Texto de contenido
   ========================================================================== */

.servicios-content-body {
    max-width: 900px;
    margin: 0 auto 2rem;
}

.servicios-content-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.servicios-content-body p:last-child {
    margin-bottom: 0;
}

.servicios-content-body strong {
    color: #1a1a1a;
}

.servicios-content-body a {
    color: #1a1a1a;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.servicios-content-body a:hover {
    color: #2ecc71;
}

/* ==========================================================================
   ESTRUCTURA PROBLEMA-SOLUCION SEO
   ========================================================================== */

/* Contenedor de bloque problema-solucion */
.problema-solucion-block {
    position: relative;
}

/* Header del problema */
.problema-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 2.5rem 2.5rem 2rem;
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
}

.problema-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(231, 76, 60, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(231, 76, 60, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.problema-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    position: relative;
    z-index: 1;
}

.problema-label svg {
    width: 16px;
    height: 16px;
}

.problema-titulo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.problema-descripcion {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.problema-descripcion strong {
    color: #ffffff;
}

/* Cuerpo de la solucion */
.solucion-body {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 0 0 20px 20px;
    border: 2px solid #e0e0e0;
    border-top: none;
    position: relative;
}

.solucion-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 15px solid #2a2a2a;
}

.solucion-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.solucion-label svg {
    width: 16px;
    height: 16px;
}

.solucion-intro {
    font-size: 1.1rem;
    color: #2a2a2a;
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.solucion-intro strong {
    color: #1a1a1a;
}

/* Transicion visual entre problema y solucion */
.problema-solucion-block .solucion-body {
    transition: all 0.3s ease;
}

.problema-solucion-block:hover .solucion-body {
    border-color: #2ecc71;
    box-shadow: 0 12px 40px rgba(46, 204, 113, 0.1);
}

/* Problema stat badge */
.problema-stat {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(231, 76, 60, 0.2);
    border: 1px solid rgba(231, 76, 60, 0.3);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.problema-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.problema-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Variante compacta del problema */
.problema-header-compact {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 1.5rem 2rem;
    border-radius: 16px 16px 0 0;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.problema-header-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at left center, rgba(231, 76, 60, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.problema-header-compact .problema-label {
    margin-bottom: 0;
    flex-shrink: 0;
}

.problema-header-compact .problema-titulo {
    font-size: 1.35rem;
    margin-bottom: 0;
    flex: 1;
}

/* Solucion body compacta */
.solucion-body-compact {
    padding: 2rem;
}

.solucion-body-compact .solucion-label {
    margin-bottom: 1rem;
}

/* Seccion con badge de numero */
.section-number-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    margin: 0 auto 2rem;
}

/* Responsive problema-solucion */
@media (max-width: 768px) {
    .problema-header {
        padding: 2rem 1.5rem 1.5rem;
        border-radius: 16px 16px 0 0;
    }

    .problema-titulo {
        font-size: 1.4rem;
    }

    .problema-descripcion {
        font-size: 1rem;
    }

    .solucion-body {
        padding: 2rem 1.5rem;
        border-radius: 0 0 16px 16px;
    }

    .problema-header-compact {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
    }

    .problema-header-compact .problema-titulo {
        font-size: 1.2rem;
    }

    .solucion-body-compact {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   SECCION DE AGITACION - Pain points destacados
   ========================================================================== */

.agitacion-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.agitacion-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(231, 76, 60, 0.08);
    border: 1px solid rgba(231, 76, 60, 0.15);
    border-radius: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.agitacion-item:hover {
    background: rgba(231, 76, 60, 0.15);
    border-color: rgba(231, 76, 60, 0.3);
    transform: translateX(5px);
}

.agitacion-item::before {
    content: '✕';
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .agitacion-list {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   BENEFICIOS LISTA - Contrapunto a agitacion
   ========================================================================== */

.beneficios-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.beneficio-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.08) 0%, rgba(46, 204, 113, 0.03) 100%);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 12px;
    font-size: 0.95rem;
    color: #2a2a2a;
    transition: all 0.3s ease;
}

.beneficio-item:hover {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.12) 0%, rgba(46, 204, 113, 0.06) 100%);
    border-color: rgba(46, 204, 113, 0.35);
    transform: translateX(5px);
}

.beneficio-item::before {
    content: '✓';
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.25);
}

.beneficio-item strong {
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .beneficios-list {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   DIVIDER VISUAL ENTRE SECCIONES
   ========================================================================== */

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
}

.section-divider-icon {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    color: #4a4a4a;
}

.section-divider-icon svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   CTA SECTION - DOS COLUMNAS (Nuevo diseño)
   ========================================================================== */

/* CTA Main Block - Layout de dos columnas */
.servicios-cta-section .cta-main-block {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
}

.servicios-cta-section .cta-photo-column {
    width: 200px;
    flex-shrink: 0;
    text-align: center;
}

.servicios-cta-section .cta-photo-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.servicios-cta-section .cta-photo-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2);
}

.servicios-cta-section .cta-photo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.servicios-cta-section .cta-photo-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 1rem;
    color: #ffffff;
}

.servicios-cta-section .cta-photo-role {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.servicios-cta-section .cta-content-column {
    flex: 1;
    text-align: left;
}

.servicios-cta-section .cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.2;
}

.servicios-cta-section .cta-seo-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.servicios-cta-section .cta-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.servicios-cta-section .cta-text .cta-emphasis {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.servicios-cta-section .cta-price-block {
    margin: 2rem 0;
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem 2rem;
}

.servicios-cta-section .cta-price {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.servicios-cta-section .cta-price-detail {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.servicios-cta-section .cta-conditions {
    margin-bottom: 1.5rem;
}

.servicios-cta-section .cta-conditions p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.servicios-cta-section .cta-honesty {
    margin-bottom: 2rem;
    border-left: 3px solid rgba(192, 192, 192, 0.5);
    padding-left: 1.25rem;
}

.servicios-cta-section .cta-honesty p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

body .servicios-cta-section .cta-button,
body .servicios-cta-section a.cta-button,
body .servicios-cta-section .btn.cta-button {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.25);
    text-align: center;
    display: block;
    background: #ffffff !important;
    color: #000000 !important;
    text-decoration: none;
    border: none !important;
}

body .servicios-cta-section .cta-button:hover,
body .servicios-cta-section a.cta-button:hover,
body .servicios-cta-section .btn.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.5);
    background: #FF0000 !important;
    color: #ffffff !important;
}

.servicios-cta-section .cta-slots {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    text-align: center;
    font-style: italic;
}

/* Responsive CTA Main Block */
@media (max-width: 768px) {
    .servicios-cta-section .cta-main-block {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        text-align: center;
    }

    .servicios-cta-section .cta-photo-column {
        width: 100%;
    }

    .servicios-cta-section .cta-photo-circle {
        width: 150px;
        height: 150px;
    }

    .servicios-cta-section .cta-photo-name {
        font-size: 1.25rem;
    }

    .servicios-cta-section .cta-content-column {
        text-align: center;
    }

    .servicios-cta-section .cta-title {
        font-size: 1.5rem;
    }

    .servicios-cta-section .cta-seo-title {
        font-size: 1.1rem;
    }

    .servicios-cta-section .cta-text p {
        font-size: 1rem;
    }

    .servicios-cta-section .cta-price-block {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        padding: 1.25rem 1.5rem;
    }

    .servicios-cta-section .cta-price {
        font-size: 2.5rem;
    }

    .servicios-cta-section .cta-honesty {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(192, 192, 192, 0.3);
        padding-top: 1rem;
    }

    .servicios-cta-section .cta-button {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
}

/* ==========================================================================
   PAGINAS FICHAS - ESTILOS ESPECIFICOS
   (holding-suiza, ag-suiza, autonomo-suiza, gmbh-suiza)
   ========================================================================== */

/* ==========================================================================
   PARA QUIEN GRID - Seccion Ideal/No Recomendado
   ========================================================================== */

.para-quien-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto;
}

.para-quien-box,
.para-quien-col {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    border: 2px solid #e0e0e0;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.para-quien-box::before,
.para-quien-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.para-quien-box:hover,
.para-quien-col:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}

/* Ideal para - Verde */
.para-quien-box.ideal,
.para-quien-col.ideal {
    border-left: 5px solid #2ecc71;
}

.para-quien-box.ideal::before,
.para-quien-col.ideal::before {
    background: radial-gradient(circle at top left, rgba(46, 204, 113, 0.08) 0%, transparent 60%);
}

.para-quien-box.ideal:hover,
.para-quien-col.ideal:hover {
    border-color: #2ecc71;
    box-shadow: 0 16px 50px rgba(46, 204, 113, 0.15);
}

.para-quien-box.ideal:hover::before,
.para-quien-col.ideal:hover::before {
    opacity: 1;
}

/* No recomendado - Rojo */
.para-quien-box.no-recomendado,
.para-quien-col.no-recomendada {
    border-left: 5px solid #e74c3c;
}

.para-quien-box.no-recomendado::before,
.para-quien-col.no-recomendada::before {
    background: radial-gradient(circle at top left, rgba(231, 76, 60, 0.08) 0%, transparent 60%);
}

.para-quien-box.no-recomendado:hover,
.para-quien-col.no-recomendada:hover {
    border-color: #e74c3c;
    box-shadow: 0 16px 50px rgba(231, 76, 60, 0.15);
}

.para-quien-box.no-recomendado:hover::before,
.para-quien-col.no-recomendada:hover::before {
    opacity: 1;
}

.para-quien-box h3,
.para-quien-col h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.para-quien-box ul,
.para-quien-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.para-quien-box ul li,
.para-quien-col ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #2a2a2a;
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.para-quien-box ul li:last-child,
.para-quien-col ul li:last-child {
    border-bottom: none;
}

.para-quien-box ul li:hover,
.para-quien-col ul li:hover {
    transform: translateX(5px);
}

.para-quien-box.ideal ul li::before,
.para-quien-col.ideal ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
    font-size: 1.1rem;
}

.para-quien-box.no-recomendado ul li::before,
.para-quien-col.no-recomendada ul li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .para-quien-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .para-quien-box,
    .para-quien-col {
        padding: 2rem;
    }

    .para-quien-box h3,
    .para-quien-col h3 {
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   EJEMPLO PRACTICO - Comparativas lado a lado
   ========================================================================== */

.ejemplo-practico {
    margin: 2.5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid #e0e0e0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.ejemplo-practico h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

.comparativa-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.comparativa-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid #e0e0e0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.comparativa-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 16px 16px 0 0;
}

.comparativa-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Variante España/Sin Holding - Rojo */
.comparativa-box.espana {
    border-color: rgba(231, 76, 60, 0.3);
}

.comparativa-box.espana::before {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.comparativa-box.espana:hover {
    border-color: #e74c3c;
    box-shadow: 0 12px 40px rgba(231, 76, 60, 0.15);
}

/* Variante Suiza/Con Holding - Verde */
.comparativa-box.suiza {
    border-color: rgba(46, 204, 113, 0.3);
}

.comparativa-box.suiza::before {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

.comparativa-box.suiza:hover {
    border-color: #2ecc71;
    box-shadow: 0 12px 40px rgba(46, 204, 113, 0.15);
}

.comparativa-box h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.comparativa-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparativa-box ul li {
    padding: 0.625rem 0;
    font-size: 0.95rem;
    color: #2a2a2a;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparativa-box ul li:last-child {
    border-bottom: none;
}

.comparativa-box ul li strong {
    color: #1a1a1a;
    display: block;
    margin-top: 0.5rem;
}

.comparativa-box ul li.resultado {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px dashed #e0e0e0;
    font-weight: 700;
    font-size: 1.05rem;
}

.comparativa-box.espana ul li.resultado {
    color: #c0392b;
}

.comparativa-box.suiza ul li.resultado {
    color: #27ae60;
}

@media (max-width: 768px) {
    .ejemplo-practico {
        padding: 1.5rem;
    }

    .comparativa-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .comparativa-box {
        padding: 1.5rem;
    }

    .comparativa-box h4 {
        font-size: 1rem;
    }
}

/* ==========================================================================
   TABLA PRECIOS - Consistencia con tabla-comparativa
   ========================================================================== */

.pricing-table {
    margin: 2rem 0;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.pricing-table h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    padding: 1.5rem 1.5rem 1rem;
    margin: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e0e0e0;
}

.tabla-precios {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.tabla-precios thead {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.tabla-precios thead th {
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 700;
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-bottom: 3px solid #000000;
}

.tabla-precios tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.tabla-precios tbody tr:last-child {
    border-bottom: none;
}

.tabla-precios tbody tr:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.tabla-precios tbody td {
    padding: 1.15rem 1rem;
    color: #2a2a2a;
    vertical-align: middle;
    line-height: 1.6;
}

.tabla-precios tbody td:first-child {
    font-weight: 600;
    color: #1a1a1a;
    background: rgba(248, 249, 250, 0.5);
}

.tabla-precios tbody tr:nth-child(even) {
    background: rgba(248, 249, 250, 0.3);
}

.tabla-precios tbody tr:nth-child(even):hover {
    background: linear-gradient(135deg, #f0f0f0 0%, #f8f9fa 100%);
}

/* Fila total */
.tabla-precios tbody tr.total-row,
.tabla-comparativa tbody tr.total-row,
.tabla-comparativa tbody tr.fila-total {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%) !important;
}

.tabla-precios tbody tr.total-row td,
.tabla-comparativa tbody tr.total-row td,
.tabla-comparativa tbody tr.fila-total td {
    color: #ffffff !important;
    font-weight: 700;
    padding: 1.25rem 1rem;
}

.tabla-precios tbody tr.total-row:hover,
.tabla-comparativa tbody tr.total-row:hover,
.tabla-comparativa tbody tr.fila-total:hover {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%) !important;
}

/* ==========================================================================
   PRICING TABLES WRAPPER - Tablas lado a lado
   ========================================================================== */

.pricing-tables-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.tablas-costes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

@media (max-width: 1024px) {
    .pricing-tables-wrapper,
    .tablas-costes-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   CHECK LIST - Alternativa a requisitos-lista
   ========================================================================== */

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1.7;
    color: #2a2a2a;
}

.check-list li:hover {
    transform: translateX(8px);
    border-color: #2ecc71;
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.1);
}

.check-list li::before {
    content: '✓';
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

/* ==========================================================================
   BLOG LINK SECTION - Enlaces relacionados
   ========================================================================== */

.blog-link-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
}

.blog-link-box {
    background: #ffffff;
    border-radius: 16px;
    border: 2px solid #e0e0e0;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-link-box:hover {
    transform: translateY(-5px);
    border-color: #1a1a1a;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}

.blog-link-box p {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0f0f0;
}

.blog-link-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-link-box ul li {
    padding: 0.5rem 0;
}

.blog-link-box ul li a {
    color: #2a2a2a;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-link-box ul li a::before {
    content: '→';
    color: #c0c0c0;
    transition: all 0.3s ease;
}

.blog-link-box ul li a:hover {
    color: #1a1a1a;
    transform: translateX(5px);
}

.blog-link-box ul li a:hover::before {
    color: #2ecc71;
}

/* ==========================================================================
   LINK CARD - Cards de enlaces relacionados
   ========================================================================== */

.links-relacionados {
    margin-top: 2rem;
}

.link-card {
    display: block;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
}

.link-card:hover {
    transform: translateY(-8px);
    border-color: #1a1a1a;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
    background: #ffffff;
}

.link-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.link-card:hover h4 {
    color: #2ecc71;
}

.link-card p {
    font-size: 0.95rem;
    color: #4a4a4a;
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   HIGHLIGHT BOX - Variantes de color inline
   ========================================================================== */

.highlight-box h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

/* Verde - Exito/Ahorro */
.highlight-box[style*="background-color: #d4edda"],
.highlight-box[style*="border-left-color: #28a745"],
.highlight-box[style*="border-left-color: #2ecc71"] {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%) !important;
    border-left-color: #28a745 !important;
}

.highlight-box[style*="background-color: #d4edda"]:hover,
.highlight-box[style*="border-left-color: #28a745"]:hover {
    box-shadow: 0 12px 35px rgba(40, 167, 69, 0.15);
}

/* Azul - Info/Nota */
.highlight-box[style*="background-color: #e7f5ff"],
.highlight-box[style*="border-left-color: #0077b6"] {
    background: linear-gradient(135deg, #e7f5ff 0%, #cce5ff 100%) !important;
    border-left-color: #0077b6 !important;
}

.highlight-box[style*="background-color: #e7f5ff"]:hover,
.highlight-box[style*="border-left-color: #0077b6"]:hover {
    box-shadow: 0 12px 35px rgba(0, 119, 182, 0.15);
}

/* Amarillo - Advertencia */
.highlight-box[style*="background-color: #fff3cd"],
.highlight-box[style*="border-left-color: #ffc107"] {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%) !important;
    border-left-color: #ffc107 !important;
}

.highlight-box[style*="background-color: #fff3cd"]:hover,
.highlight-box[style*="border-left-color: #ffc107"]:hover {
    box-shadow: 0 12px 35px rgba(255, 193, 7, 0.2);
}

/* ==========================================================================
   SERVICIOS CONTENT HEADER - Ajustes para paginas ficha
   ========================================================================== */

.servicios-ficha-page .servicios-content-header {
    text-align: left;
}

.servicios-ficha-page .servicios-content-header p {
    margin-bottom: 1.25rem;
}

.servicios-ficha-page .servicios-content-header p:last-child {
    margin-bottom: 0;
}

.servicios-ficha-page .servicios-content-header p a {
    color: #1a1a1a;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.servicios-ficha-page .servicios-content-header p a:hover {
    color: #2ecc71;
}

/* ==========================================================================
   SERVICIO CARD MEJORADA - Para paginas ficha
   ========================================================================== */

.servicios-ficha-page .servicio-card {
    position: relative;
    overflow: hidden;
}

.servicios-ficha-page .servicio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(192, 192, 192, 0.08) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.servicios-ficha-page .servicio-card:hover::before {
    opacity: 1;
}

.servicios-ficha-page .servicio-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

/* ==========================================================================
   TABLA RESPONSIVE MEJORADA
   ========================================================================== */

.tabla-responsive {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
    .tabla-responsive thead th,
    .tabla-responsive tbody td {
        min-width: 120px;
        white-space: nowrap;
    }

    .tabla-responsive tbody td:first-child {
        min-width: 150px;
    }
}

/* ==========================================================================
   PAGINAS ESPECIFICAS - Ajustes por pagina
   ========================================================================== */

/* Page Holding Suiza */
.page-holding-suiza .hero-stat-value {
    font-size: 2.25rem;
}

/* Page AG Suiza */
.page-ag-suiza .proceso-timeline {
    margin-top: 2.5rem;
}

/* Page Autonomo Suiza */
.page-autonomo-suiza .comparativa-grid {
    margin-top: 1.5rem;
}

/* Page GmbH Suiza */
.page-gmbh-suiza .tabla-cantones {
    margin-top: 2rem;
}

/* ==========================================================================
   NEWSLETTER CONVERSION BANNER
   Banner de conversion para captar suscriptores de newsletter
   Estilo: Copy directo tipo Isra Bravo
   ========================================================================== */

.newsletter-conversion-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.newsletter-conversion-section.newsletter-conversion-final {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.newsletter-conversion-banner {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    text-align: left;
}

.newsletter-conversion-final .newsletter-conversion-banner {
    background: #ffffff;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.25);
}

/* Banner Hook - Frases iniciales de atencion */
.newsletter-conversion-banner .banner-hook {
    margin-bottom: 2rem;
}

.newsletter-conversion-banner .hook-text {
    font-size: 1.25rem;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0 0 0.5rem 0;
}

.newsletter-conversion-banner .hook-text:first-child {
    font-size: 1.4rem;
}

.newsletter-conversion-banner .hook-text strong {
    color: #000000;
}

/* Banner Agitation - Dolor y contraste */
.newsletter-conversion-banner .banner-agitation {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid #dc3545;
    border-radius: 0 8px 8px 0;
}

.newsletter-conversion-banner .banner-agitation p {
    font-size: 1.1rem;
    color: #2a2a2a;
    line-height: 1.7;
    margin: 0 0 0.75rem 0;
}

.newsletter-conversion-banner .banner-agitation p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    color: #1a1a1a;
}

/* Banner Solution - La solucion (newsletter) */
.newsletter-conversion-banner .banner-solution {
    margin-bottom: 2rem;
}

.newsletter-conversion-banner .banner-solution p {
    font-size: 1.1rem;
    color: #2a2a2a;
    line-height: 1.7;
    margin: 0 0 0.5rem 0;
}

.newsletter-conversion-banner .banner-solution p strong {
    color: #000000;
    font-size: 1.2rem;
}

/* Banner CTA - Urgencia y claridad */
.newsletter-conversion-banner .banner-cta {
    margin-bottom: 2rem;
}

.newsletter-conversion-banner .cta-urgency {
    font-size: 1rem;
    color: #495057;
    line-height: 1.6;
    margin: 0 0 0.5rem 0;
}

.newsletter-conversion-banner .cta-main {
    font-size: 1.15rem;
    color: #1a1a1a;
    margin: 0.75rem 0 0 0;
}

.newsletter-conversion-banner .cta-main strong {
    color: #28a745;
}

/* Banner Form - Formulario de suscripcion */
.newsletter-conversion-banner .banner-form {
    margin-bottom: 1.5rem;
}

.newsletter-conversion-banner .newsletter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsletter-conversion-banner .newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: #ffffff;
    color: #1a1a1a;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-conversion-banner .newsletter-input:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.newsletter-conversion-banner .newsletter-input::placeholder {
    color: #adb5bd;
}

.newsletter-conversion-banner .newsletter-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    background: #1a1a1a;
    color: #ffffff;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-conversion-banner .newsletter-button:hover {
    background: #ffffff;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Banner Postdata - PD final que genera curiosidad */
.newsletter-conversion-banner .banner-postdata {
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.newsletter-conversion-banner .banner-postdata p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.newsletter-conversion-banner .banner-postdata em {
    font-style: italic;
}

/* Variante 2 del banner - Estilo alternativo */
.newsletter-conversion-banner.banner-variant-2 .banner-agitation {
    border-left-color: #0077b6;
    background: linear-gradient(135deg, #e7f5ff 0%, #f8f9fa 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .newsletter-conversion-banner {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .newsletter-conversion-banner .hook-text {
        font-size: 1.1rem;
    }

    .newsletter-conversion-banner .hook-text:first-child {
        font-size: 1.25rem;
    }

    .newsletter-conversion-banner .newsletter-form {
        flex-direction: column;
    }

    .newsletter-conversion-banner .newsletter-input {
        min-width: 100%;
    }

    .newsletter-conversion-banner .newsletter-button {
        width: 100%;
    }

    .newsletter-conversion-banner .banner-agitation {
        padding: 1rem;
    }

    .newsletter-conversion-banner .banner-agitation p,
    .newsletter-conversion-banner .banner-solution p {
        font-size: 1rem;
    }
}

/* ==========================================================================
   NEWSLETTER BANNER - ESTILOS BREVO/SENDINBLUE
   Estilos para el formulario de Brevo dentro del banner de newsletter
   ========================================================================== */

/* Contenedor del formulario Brevo */
.newsletter-conversion-banner .banner-form .sib-form {
    max-width: 100%;
}

.newsletter-conversion-banner .banner-form form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
}

/* Ocultar labels y textos extra de Brevo */
.newsletter-conversion-banner .banner-form .sib-form-block__title,
.newsletter-conversion-banner .banner-form .sib-form-block__text,
.newsletter-conversion-banner .banner-form label {
    display: none;
}

/* Campos de input de Brevo */
.newsletter-conversion-banner .banner-form p.sib-FIRSTNAME-area,
.newsletter-conversion-banner .banner-form p.sib-email-area,
.newsletter-conversion-banner .banner-form .entry__field {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.newsletter-conversion-banner .banner-form input[type="text"],
.newsletter-conversion-banner .banner-form input[type="email"] {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: 'Inter Tight', sans-serif;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: #ffffff;
    color: #1a1a1a;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.newsletter-conversion-banner .banner-form input[type="text"]:focus,
.newsletter-conversion-banner .banner-form input[type="email"]:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.newsletter-conversion-banner .banner-form input::placeholder {
    color: #adb5bd;
}

/* Boton de Brevo */
.newsletter-conversion-banner .banner-form .sib-default-btn,
.newsletter-conversion-banner .banner-form input[type="submit"],
.newsletter-conversion-banner .banner-form button[type="submit"] {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter Tight', sans-serif;
    background: #1a1a1a;
    color: #ffffff;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 200px;
}

.newsletter-conversion-banner .banner-form .sib-default-btn:hover,
.newsletter-conversion-banner .banner-form input[type="submit"]:hover,
.newsletter-conversion-banner .banner-form button[type="submit"]:hover {
    background: #ffffff;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Ocultar elementos extra de Brevo */
.newsletter-conversion-banner .banner-form p.entry__error,
.newsletter-conversion-banner .banner-form .sib-form-message-panel {
    font-size: 0.875rem;
    color: #dc3545;
    margin-top: 0.5rem;
}

.newsletter-conversion-banner .banner-form .sib-form-message-panel--active {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Fallback cuando Brevo no esta activo */
.newsletter-conversion-banner .newsletter-fallback {
    opacity: 0.6;
}

.newsletter-conversion-banner .newsletter-fallback-notice {
    width: 100%;
    text-align: center;
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* Responsive para formulario Brevo */
@media (max-width: 768px) {
    .newsletter-conversion-banner .banner-form form {
        flex-direction: column;
    }

    .newsletter-conversion-banner .banner-form p.sib-FIRSTNAME-area,
    .newsletter-conversion-banner .banner-form p.sib-email-area,
    .newsletter-conversion-banner .banner-form .entry__field {
        min-width: 100%;
    }

    .newsletter-conversion-banner .banner-form .sib-default-btn,
    .newsletter-conversion-banner .banner-form input[type="submit"],
    .newsletter-conversion-banner .banner-form button[type="submit"] {
        width: 100%;
        min-width: unset;
    }
}

/* ==========================================================================
   OPTIMIZACIONES MÓVILES ADICIONALES - AUDITORIA ENERO 2026
   Mejoras específicas para páginas de servicios (fichas)
   ========================================================================== */

/* --- Breakpoint 480px --- */
@media (max-width: 480px) {
    /* Tabla estructuras links más compacta */
    .tabla-estructuras {
        font-size: 0.8rem;
    }

    .tabla-estructuras th,
    .tabla-estructuras td {
        padding: 0.625rem 0.5rem;
    }

    /* Servicios CTA Section optimizada */
    .servicios-cta-wrapper {
        padding: 2rem 0;
    }

    .servicios-cta-wrapper h2 {
        font-size: 1.35rem;
        line-height: 1.3;
    }

    .servicios-cta-content p {
        font-size: 0.9rem;
    }

    .servicios-cta-content .cta-photo-circle {
        width: 100px;
        height: 100px;
    }

    .price-amount {
        font-size: 2rem;
    }

    /* Fichas - CTA precio */
    .servicios-ficha-page .servicios-cta-price {
        padding: 1.25rem 1.5rem;
    }

    .servicios-ficha-page .servicios-cta-price .price-amount {
        font-size: 2rem;
    }

    /* Fichas - Section SEO */
    .servicios-ficha-page .section-seo-block {
        padding: 1.25rem 1.5rem;
        margin-bottom: 2rem;
    }

    .servicios-ficha-page .section-seo-title {
        font-size: 1.1rem;
    }

    /* Ejemplo práctico compacto */
    .ejemplo-practico {
        padding: 1.25rem;
        margin: 1.5rem 0;
        border-radius: 12px;
    }

    .ejemplo-practico h3 {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }

    /* Pricing table */
    .pricing-table {
        border-radius: 12px;
    }

    .pricing-table h3 {
        font-size: 1rem;
        padding: 1rem;
    }

    .tabla-precios {
        font-size: 0.8rem;
    }

    .tabla-precios thead th {
        padding: 0.875rem 0.5rem;
        font-size: 0.75rem;
    }

    .tabla-precios tbody td {
        padding: 0.75rem 0.5rem;
    }

    /* Check list compacta */
    .check-list li {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
        gap: 0.75rem;
    }

    .check-list li::before {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }

    /* SEO Info Block */
    .seo-info-block {
        padding: 1.25rem;
    }

    .seo-info-block h3 {
        font-size: 1.1rem;
    }

    .seo-info-block p {
        font-size: 0.9rem;
    }

    /* Categorías grid */
    .servicios-categorias-grid {
        gap: 1rem;
    }

    .servicios-categorias-grid .estructura-card {
        padding: 1.5rem;
    }

    .servicios-categorias-grid .servicio-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }

    .servicios-categorias-grid .estructura-card h3 {
        font-size: 1.15rem;
    }
}

/* --- Breakpoint 375px --- */
@media (max-width: 375px) {
    .servicios-cta-wrapper h2 {
        font-size: 1.2rem;
    }

    .price-amount {
        font-size: 1.75rem;
    }

    .ejemplo-practico {
        padding: 1rem;
    }

    .ejemplo-practico h3 {
        font-size: 1rem;
    }

    .comparativa-box {
        padding: 1rem;
    }

    .comparativa-box h4 {
        font-size: 0.9rem;
    }

    .comparativa-box ul li {
        font-size: 0.8rem;
    }

    .servicios-categorias-grid .estructura-card {
        padding: 1.25rem;
    }

    .servicios-categorias-grid .estructura-card h3 {
        font-size: 1.05rem;
    }
}

/* --- Optimizaciones de rendimiento móvil --- */
@media (max-width: 768px) {
    /* Reducir complejidad visual en móvil */
    .servicios-cta-section::before {
        display: none;
    }

    .hero-seo-block::before {
        opacity: 0.3;
    }

    /* Simplificar animaciones */
    .servicios-ficha-page .animate-on-scroll {
        transition-duration: 0.4s;
    }

    /* Desactivar animación pulse en valores */
    .hero-stat-value {
        animation: none;
    }
}

/* --- Mejoras de accesibilidad táctil --- */
@media (pointer: coarse) {
    .servicios-cta-section .cta-button,
    .selector-link,
    .btn-primary {
        min-height: 48px;
    }

    /* Más espacio en FAQ para tocar */
    .faq-section .faq-question {
        padding: 1.25rem 1.5rem;
    }

    /* Links más fáciles de tocar */
    .breadcrumb a {
        padding: 0.25rem 0.125rem;
    }
}

/* =================================================================
   CTA OPTIONS GRID (Declaración Renta Suiza)
   Grid con dos opciones de CTA: Consulta y Newsletter
   ================================================================= */

.cta-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.cta-option-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cta-option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.cta-option-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f3f4f6;
}

.cta-option-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.cta-option-card .btn-primary,
.cta-option-card .btn-secondary {
    display: inline-block;
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
}

/* CTA Guarantee */
.cta-guarantee {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
    text-align: center;
}

.cta-guarantee p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 0.75rem;
}

.cta-guarantee p:last-child {
    margin-bottom: 0;
}

/* Responsive CTA Options */
@media (max-width: 768px) {
    .cta-options-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-option-card {
        padding: 2rem 1.5rem;
    }

    .cta-option-card h3 {
        font-size: 1.2rem;
    }
}

/* =================================================================
   HERO CTA WRAPPER DOBLE
   Para páginas con dos CTAs en el hero (consulta + newsletter)
   ================================================================= */

.hero-cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.hero-cta-wrapper .btn-primary,
.hero-cta-wrapper .btn-secondary {
    min-width: 250px;
}

@media (max-width: 600px) {
    .hero-cta-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-wrapper .btn-primary,
    .hero-cta-wrapper .btn-secondary {
        width: 100%;
        max-width: 320px;
    }
}

/* =================================================================
   PAGE DECLARACION RENTA SUIZA - Estilos específicos
   ================================================================= */

.page-declaracion-renta-suiza .hero-stats-section {
    padding-top: 0;
}

.page-declaracion-renta-suiza .servicios-cta-section {
    padding-bottom: 5rem;
}

/* =================================================================
   PAGE DECLARACION RENTA SUIZA - Mejoras Esteticas
   ================================================================= */

/* --- Hero Stats Mejorados - Diseño Premium --- */
.page-declaracion-renta-suiza .hero-stat {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border: 1px solid rgba(232, 232, 232, 0.8);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.page-declaracion-renta-suiza .hero-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.page-declaracion-renta-suiza .hero-stat:hover {
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow:
        0 8px 20px rgba(34, 197, 94, 0.1),
        0 16px 40px rgba(34, 197, 94, 0.1),
        0 0 0 1px rgba(34, 197, 94, 0.1) inset;
    transform: translateY(-8px);
}

.page-declaracion-renta-suiza .hero-stat:hover::before {
    opacity: 1;
}

.page-declaracion-renta-suiza .hero-stat-icon {
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.2),
        0 8px 20px rgba(0, 0, 0, 0.15),
        0 0 0 3px rgba(255, 255, 255, 0.1) inset;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-declaracion-renta-suiza .hero-stat-icon svg {
    stroke: #ffffff;
    transition: all 0.3s ease;
}

.page-declaracion-renta-suiza .hero-stat:hover .hero-stat-icon {
    background: linear-gradient(145deg, #22c55e 0%, #16a34a 100%);
    box-shadow:
        0 6px 16px rgba(34, 197, 94, 0.4),
        0 12px 28px rgba(34, 197, 94, 0.25),
        0 0 0 3px rgba(255, 255, 255, 0.2) inset;
    transform: scale(1.05);
}

.page-declaracion-renta-suiza .hero-stat-value {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.page-declaracion-renta-suiza .hero-stat:hover .hero-stat-value {
    background: linear-gradient(135deg, #166534 0%, #22c55e 50%, #166534 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* --- Bloques Problema-Solucion Mejorados - Diseño Premium --- */
.page-declaracion-renta-suiza .problema-solucion-block {
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.04),
        0 12px 40px rgba(0, 0, 0, 0.08),
        0 24px 60px rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-declaracion-renta-suiza .problema-solucion-block:hover {
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.06),
        0 20px 50px rgba(0, 0, 0, 0.1),
        0 32px 80px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.page-declaracion-renta-suiza .problema-header {
    background: linear-gradient(145deg, #1a1a1a 0%, #252525 50%, #2d2d2d 100%);
    border-bottom: 4px solid;
    border-image: linear-gradient(90deg, #e74c3c 0%, #c0392b 50%, #e74c3c 100%) 1;
    position: relative;
}

.page-declaracion-renta-suiza .problema-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.5), transparent);
}

.page-declaracion-renta-suiza .problema-label {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.2) 0%, rgba(231, 76, 60, 0.1) 100%);
    border: 1px solid rgba(231, 76, 60, 0.4);
    color: #ff6b6b;
}

.page-declaracion-renta-suiza .problema-titulo {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-declaracion-renta-suiza .problema-descripcion {
    color: rgba(255, 255, 255, 0.85);
}

.page-declaracion-renta-suiza .solucion-body {
    background: linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
    border: 2px solid #e8e8e8;
    border-top: none;
    border-radius: 0 0 20px 20px;
}

.page-declaracion-renta-suiza .solucion-label {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.15) 0%, rgba(46, 204, 113, 0.08) 100%);
    border: 1px solid rgba(46, 204, 113, 0.4);
    color: #27ae60;
}

.page-declaracion-renta-suiza .solucion-intro {
    font-size: 1.1rem;
    color: #2a2a2a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* --- Agitacion List Mejorada --- */
.page-declaracion-renta-suiza .agitacion-list {
    gap: 0.875rem;
    margin-top: 1.5rem;
}

.page-declaracion-renta-suiza .agitacion-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.875rem 1rem;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.page-declaracion-renta-suiza .agitacion-item::before {
    content: '⚠';
    color: #ffb74d;
    font-size: 1rem;
    background: rgba(255, 183, 77, 0.15);
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-declaracion-renta-suiza .agitacion-item:hover {
    background: rgba(255, 183, 77, 0.12);
    border-color: rgba(255, 183, 77, 0.35);
    transform: translateX(4px);
}

/* Agitacion items dentro de solucion (estilo diferente) */
.page-declaracion-renta-suiza .solucion-body .agitacion-list .agitacion-item {
    background: rgba(231, 76, 60, 0.06);
    border: 1px solid rgba(231, 76, 60, 0.15);
    color: #2a2a2a;
}

.page-declaracion-renta-suiza .solucion-body .agitacion-list .agitacion-item::before {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

.page-declaracion-renta-suiza .solucion-body .agitacion-list .agitacion-item:hover {
    background: rgba(231, 76, 60, 0.1);
    border-color: rgba(231, 76, 60, 0.3);
}

/* --- Highlight Box Mejorado - Diseño Premium --- */
.page-declaracion-renta-suiza .highlight-box {
    background: linear-gradient(145deg, #f0fdf4 0%, #ecfdf5 50%, #f0fdf4 100%);
    border: 1px solid rgba(187, 247, 208, 0.8);
    border-left: 5px solid #22c55e;
    box-shadow:
        0 4px 12px rgba(34, 197, 94, 0.08),
        0 8px 24px rgba(34, 197, 94, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    padding: 2rem 2rem 2rem 2.5rem;
    position: relative;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.page-declaracion-renta-suiza .highlight-box::before {
    content: '💡';
    position: absolute;
    top: -14px;
    left: 24px;
    background: linear-gradient(145deg, #ffffff, #f8faf9);
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(34, 197, 94, 0.1);
    font-size: 1.1rem;
}

.page-declaracion-renta-suiza .highlight-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.03));
    pointer-events: none;
}

.page-declaracion-renta-suiza .highlight-box h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #166534;
    margin-bottom: 1rem;
    padding-bottom: 0.875rem;
    border-bottom: 2px solid rgba(34, 197, 94, 0.15);
    position: relative;
}

.page-declaracion-renta-suiza .highlight-box h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #22c55e, transparent);
}

.page-declaracion-renta-suiza .highlight-box p {
    color: #1a1a1a;
    line-height: 1.8;
}

.page-declaracion-renta-suiza .highlight-box p strong {
    color: #166534;
    font-weight: 700;
}

.page-declaracion-renta-suiza .highlight-box:hover {
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow:
        0 8px 20px rgba(34, 197, 94, 0.12),
        0 16px 40px rgba(34, 197, 94, 0.1),
        0 0 0 1px rgba(34, 197, 94, 0.1) inset;
    transform: translateY(-4px);
}

/* --- Tablas Comparativas Mejoradas - Diseño Premium --- */
.page-declaracion-renta-suiza .tabla-titulo {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%);
    border-left: 5px solid #22c55e;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.08);
    position: relative;
    overflow: hidden;
}

.page-declaracion-renta-suiza .tabla-titulo::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.05));
    pointer-events: none;
}

.page-declaracion-renta-suiza .tabla-comparativa-wrapper {
    width: 100%;
    margin: 1.5rem 0 2.5rem;
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: 20px;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 10px 25px -5px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-declaracion-renta-suiza .tabla-comparativa-wrapper:hover {
    box-shadow:
        0 8px 12px -2px rgba(0, 0, 0, 0.08),
        0 20px 40px -10px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(34, 197, 94, 0.15) inset;
    transform: translateY(-2px);
}

.page-declaracion-renta-suiza .tabla-comparativa {
    width: 100%;
    min-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 1rem;
}

.page-declaracion-renta-suiza .tabla-comparativa thead {
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 50%, #1f2937 100%);
    position: relative;
}

.page-declaracion-renta-suiza .tabla-comparativa thead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 50%, #22c55e 100%);
}

.page-declaracion-renta-suiza .tabla-comparativa thead th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: #ffffff;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: none;
    white-space: nowrap;
    position: relative;
}

.page-declaracion-renta-suiza .tabla-comparativa thead th:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.2), transparent);
}

.page-declaracion-renta-suiza .tabla-comparativa thead th:first-child {
    border-radius: 18px 0 0 0;
}

.page-declaracion-renta-suiza .tabla-comparativa thead th:last-child {
    border-radius: 0 18px 0 0;
}

.page-declaracion-renta-suiza .tabla-comparativa tbody tr {
    border-bottom: 1px solid rgba(229, 231, 235, 0.6);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-declaracion-renta-suiza .tabla-comparativa tbody tr:last-child {
    border-bottom: none;
}

.page-declaracion-renta-suiza .tabla-comparativa tbody tr:nth-child(even) {
    background: linear-gradient(90deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.5) 100%);
}

.page-declaracion-renta-suiza .tabla-comparativa tbody td {
    padding: 1.125rem 1.5rem;
    color: #374151;
    line-height: 1.7;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.page-declaracion-renta-suiza .tabla-comparativa tbody tr:hover {
    background: linear-gradient(135deg, rgba(240, 253, 244, 0.9) 0%, rgba(236, 253, 245, 0.7) 100%);
    transform: none;
}

.page-declaracion-renta-suiza .tabla-comparativa tbody tr:hover td {
    color: #1f2937;
}

.page-declaracion-renta-suiza .tabla-comparativa tbody td:first-child {
    font-weight: 600;
    color: #1f2937;
    background: linear-gradient(90deg, rgba(248, 250, 252, 0.9) 0%, transparent 100%);
    border-right: 2px solid rgba(34, 197, 94, 0.15);
    position: relative;
}

.page-declaracion-renta-suiza .tabla-comparativa tbody tr:hover td:first-child {
    border-right-color: rgba(34, 197, 94, 0.4);
}

.page-declaracion-renta-suiza .tabla-comparativa tbody td strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Tabla de costes - destacar precios */
.page-declaracion-renta-suiza .tabla-comparativa tbody td:last-child {
    font-weight: 600;
    color: #166534;
    position: relative;
}

.page-declaracion-renta-suiza .tabla-comparativa tbody tr:hover td:last-child {
    color: #15803d;
}

/* --- Tablas Mobile Responsive --- */
@media (max-width: 900px) {
    .page-declaracion-renta-suiza .tabla-comparativa-wrapper {
        margin: 1rem -1rem 2rem;
        border-radius: 0;
        border-left: none;
        border-right: none;
        width: calc(100% + 2rem);
    }

    .page-declaracion-renta-suiza .tabla-comparativa thead th:first-child,
    .page-declaracion-renta-suiza .tabla-comparativa thead th:last-child {
        border-radius: 0;
    }
}

@media (max-width: 768px) {
    .page-declaracion-renta-suiza .tabla-titulo {
        font-size: 1.1rem;
        padding: 0.625rem 0.875rem;
    }

    .page-declaracion-renta-suiza .tabla-comparativa {
        font-size: 0.9rem;
    }

    .page-declaracion-renta-suiza .tabla-comparativa thead th {
        padding: 1rem;
        font-size: 0.8rem;
        letter-spacing: 0.02em;
    }

    .page-declaracion-renta-suiza .tabla-comparativa tbody td {
        padding: 0.875rem 1rem;
    }

    .page-declaracion-renta-suiza .tabla-comparativa tbody tr:hover {
        transform: none;
    }
}

@media (max-width: 600px) {
    .page-declaracion-renta-suiza .tabla-comparativa-wrapper {
        margin: 1rem -0.5rem 2rem;
        width: calc(100% + 1rem);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    }

    .page-declaracion-renta-suiza .tabla-comparativa {
        font-size: 0.85rem;
    }

    .page-declaracion-renta-suiza .tabla-comparativa thead th {
        padding: 0.875rem 0.75rem;
        font-size: 0.75rem;
    }

    .page-declaracion-renta-suiza .tabla-comparativa tbody td {
        padding: 0.75rem 0.75rem;
        line-height: 1.5;
    }

    .page-declaracion-renta-suiza .tabla-comparativa tbody td:first-child {
        border-right: 1px solid #e5e7eb;
    }

    /* Tabla apilada para móvil pequeño - solo para tablas de 2 columnas */
    .page-declaracion-renta-suiza .tabla-comparativa[data-cols="2"] {
        display: block;
    }

    .page-declaracion-renta-suiza .tabla-comparativa[data-cols="2"] thead {
        display: none;
    }

    .page-declaracion-renta-suiza .tabla-comparativa[data-cols="2"] tbody {
        display: block;
    }

    .page-declaracion-renta-suiza .tabla-comparativa[data-cols="2"] tbody tr {
        display: flex;
        flex-direction: column;
        padding: 1rem;
        margin-bottom: 0.5rem;
        border-bottom: 2px solid #e5e7eb;
    }

    .page-declaracion-renta-suiza .tabla-comparativa[data-cols="2"] tbody td {
        display: block;
        padding: 0.5rem 0;
        border: none !important;
        background: transparent !important;
    }

    .page-declaracion-renta-suiza .tabla-comparativa[data-cols="2"] tbody td:first-child {
        font-size: 1rem;
        color: #1a1a1a;
        padding-bottom: 0.25rem;
    }

    .page-declaracion-renta-suiza .tabla-comparativa[data-cols="2"] tbody td:last-child {
        font-size: 1.1rem;
        color: #166534;
        font-weight: 700;
    }
}

/* --- CTA Options Grid Mejorado - Diseño Premium --- */
.page-declaracion-renta-suiza .cta-options-grid {
    gap: 2.5rem;
}

.page-declaracion-renta-suiza .cta-option-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border: 1px solid rgba(229, 231, 235, 0.8);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-declaracion-renta-suiza .cta-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1a1a1a 0%, #4a4a4a 100%);
    transition: height 0.3s ease;
}

.page-declaracion-renta-suiza .cta-option-card::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.05), transparent);
    transition: height 0.4s ease;
    pointer-events: none;
}

.page-declaracion-renta-suiza .cta-option-card:first-child::before {
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 50%, #22c55e 100%);
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.page-declaracion-renta-suiza .cta-option-card:last-child::before {
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 50%, #3b82f6 100%);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.page-declaracion-renta-suiza .cta-option-card:last-child::after {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.05), transparent);
}

.page-declaracion-renta-suiza .cta-option-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(243, 244, 246, 0.8);
    position: relative;
}

.page-declaracion-renta-suiza .cta-option-card h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, currentColor, transparent);
    opacity: 0.3;
}

.page-declaracion-renta-suiza .cta-option-card:first-child h3 {
    color: #166534;
}

.page-declaracion-renta-suiza .cta-option-card:last-child h3 {
    color: #1d4ed8;
}

.page-declaracion-renta-suiza .cta-option-card p {
    line-height: 1.8;
}

.page-declaracion-renta-suiza .cta-option-card:hover {
    border-color: rgba(209, 213, 219, 0.6);
    transform: translateY(-8px);
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.08),
        0 24px 48px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset;
}

.page-declaracion-renta-suiza .cta-option-card:hover::after {
    height: 100px;
}

.page-declaracion-renta-suiza .cta-option-card:first-child:hover {
    border-color: rgba(34, 197, 94, 0.2);
}

.page-declaracion-renta-suiza .cta-option-card:last-child:hover {
    border-color: rgba(59, 130, 246, 0.2);
}

/* --- CTA Guarantee Mejorado - Diseño Premium --- */
.page-declaracion-renta-suiza .cta-guarantee {
    background: linear-gradient(145deg, #fffbeb 0%, #fef3c7 50%, #fffbeb 100%);
    border: 1px solid rgba(252, 211, 77, 0.5);
    border-radius: 16px;
    padding: 2.25rem 2.5rem;
    position: relative;
    box-shadow:
        0 4px 12px rgba(252, 211, 77, 0.1),
        0 8px 24px rgba(252, 211, 77, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    margin-top: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-declaracion-renta-suiza .cta-guarantee::before {
    content: '🔒';
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(145deg, #ffffff, #fffbeb);
    padding: 8px 16px;
    border-radius: 24px;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(252, 211, 77, 0.3);
    font-size: 1.25rem;
}

.page-declaracion-renta-suiza .cta-guarantee:hover {
    box-shadow:
        0 8px 20px rgba(252, 211, 77, 0.15),
        0 16px 40px rgba(252, 211, 77, 0.1),
        0 0 0 1px rgba(252, 211, 77, 0.3) inset;
    transform: translateY(-2px);
}

.page-declaracion-renta-suiza .cta-guarantee p {
    color: #78350f;
    text-align: center;
    line-height: 1.8;
}

.page-declaracion-renta-suiza .cta-guarantee p strong {
    color: #92400e;
}

/* --- FAQ Section Mejorada - Diseño Premium --- */
.page-declaracion-renta-suiza .faq-list {
    gap: 1rem;
}

.page-declaracion-renta-suiza .faq-item {
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: 16px;
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.02),
        0 4px 12px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.page-declaracion-renta-suiza .faq-item:hover {
    border-color: rgba(156, 163, 175, 0.5);
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    transform: translateY(-2px);
}

.page-declaracion-renta-suiza .faq-item.active {
    border-color: rgba(34, 197, 94, 0.4);
    background: linear-gradient(145deg, #f0fdf4 0%, #ffffff 50%, #f8faf9 100%);
    box-shadow:
        0 6px 16px rgba(34, 197, 94, 0.1),
        0 12px 32px rgba(34, 197, 94, 0.08),
        0 0 0 1px rgba(34, 197, 94, 0.1) inset;
    transform: translateY(-2px);
}

.page-declaracion-renta-suiza .faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.page-declaracion-renta-suiza .faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: #9ca3af;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #f3f4f6, #e5e7eb);
}

.page-declaracion-renta-suiza .faq-item.active .faq-question::after {
    content: '−';
    color: #ffffff;
    background: linear-gradient(145deg, #22c55e, #16a34a);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    transform: translateY(-50%) rotate(180deg);
}

.page-declaracion-renta-suiza .faq-question span {
    color: #1f2937;
    transition: color 0.3s ease;
    padding-right: 2.5rem;
    display: block;
}

.page-declaracion-renta-suiza .faq-item:hover .faq-question span {
    color: #111827;
}

.page-declaracion-renta-suiza .faq-item.active .faq-question span {
    color: #166534;
}

.page-declaracion-renta-suiza .faq-answer {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid rgba(34, 197, 94, 0.15);
    margin-top: 0;
    padding-top: 1.25rem;
    animation: faqSlideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes faqSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-declaracion-renta-suiza .faq-answer p {
    color: #374151;
    line-height: 1.8;
}

/* --- Proceso Timeline Mejorado - Diseño Premium --- */
.page-declaracion-renta-suiza .proceso-timeline {
    padding-left: 100px;
    position: relative;
}

.page-declaracion-renta-suiza .proceso-timeline::before {
    width: 4px;
    background: linear-gradient(180deg,
        #22c55e 0%,
        #16a34a 25%,
        #22c55e 50%,
        #16a34a 75%,
        #22c55e 100%);
    border-radius: 4px;
    left: 32px;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.page-declaracion-renta-suiza .proceso-timeline .proceso-step {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 4px 16px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.page-declaracion-renta-suiza .proceso-timeline .proceso-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(34, 197, 94, 0.3) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.page-declaracion-renta-suiza .proceso-timeline .proceso-step:hover {
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow:
        0 8px 20px rgba(34, 197, 94, 0.1),
        0 16px 40px rgba(34, 197, 94, 0.08),
        0 0 0 1px rgba(34, 197, 94, 0.1) inset;
    transform: translateX(8px);
}

.page-declaracion-renta-suiza .proceso-timeline .proceso-step:hover::before {
    opacity: 1;
}

.page-declaracion-renta-suiza .proceso-timeline .proceso-number {
    background: linear-gradient(145deg, #22c55e 0%, #16a34a 100%);
    box-shadow:
        0 4px 12px rgba(34, 197, 94, 0.4),
        0 8px 24px rgba(34, 197, 94, 0.2),
        0 0 0 4px rgba(255, 255, 255, 1),
        0 0 0 6px rgba(34, 197, 94, 0.2);
    border: none;
    left: -68px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-declaracion-renta-suiza .proceso-timeline .proceso-step:hover .proceso-number {
    transform: translateY(-50%) scale(1.15);
    box-shadow:
        0 6px 16px rgba(34, 197, 94, 0.5),
        0 12px 32px rgba(34, 197, 94, 0.3),
        0 0 0 4px rgba(255, 255, 255, 1),
        0 0 0 8px rgba(34, 197, 94, 0.3);
}

.page-declaracion-renta-suiza .proceso-timeline .proceso-content h3 {
    color: #166534;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.page-declaracion-renta-suiza .proceso-timeline .proceso-step:hover .proceso-content h3 {
    color: #15803d;
}

.page-declaracion-renta-suiza .proceso-timeline .proceso-content p {
    color: #4b5563;
    line-height: 1.7;
}

/* --- Section Alt Background --- */
.page-declaracion-renta-suiza .section-alt {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

/* --- Botones Mejorados --- */
.page-declaracion-renta-suiza .btn-secondary {
    background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%) !important;
    border: 2px solid #cbd5e1 !important;
    color: #1e293b !important;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.page-declaracion-renta-suiza .btn-secondary:hover {
    background: linear-gradient(145deg, #3b82f6 0%, #2563eb 100%) !important;
    border-color: #3b82f6 !important;
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
}

.page-declaracion-renta-suiza .btn-primary {
    background: linear-gradient(145deg, #22c55e 0%, #16a34a 100%) !important;
    border: 2px solid #16a34a !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.page-declaracion-renta-suiza .btn-primary:hover {
    background: linear-gradient(145deg, #16a34a 0%, #15803d 100%) !important;
    border-color: #15803d !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.45);
}

/* --- Servicio Cards en solucion - Diseño Premium --- */
.page-declaracion-renta-suiza .solucion-body .servicio-card {
    border: 1px solid rgba(229, 231, 235, 0.8);
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 18px;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.03),
        0 4px 16px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.page-declaracion-renta-suiza .solucion-body .servicio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.page-declaracion-renta-suiza .solucion-body .servicio-card:hover {
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow:
        0 8px 20px rgba(34, 197, 94, 0.1),
        0 16px 40px rgba(34, 197, 94, 0.08),
        0 0 0 1px rgba(34, 197, 94, 0.1) inset;
    transform: translateY(-6px);
}

.page-declaracion-renta-suiza .solucion-body .servicio-card:hover::before {
    opacity: 1;
}

.page-declaracion-renta-suiza .solucion-body .servicio-card .servicio-icon {
    background: linear-gradient(145deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid rgba(187, 247, 208, 0.8);
    border-radius: 14px;
    box-shadow:
        0 2px 8px rgba(34, 197, 94, 0.1),
        0 0 0 3px rgba(255, 255, 255, 0.8) inset;
    transition: all 0.4s ease;
}

.page-declaracion-renta-suiza .solucion-body .servicio-card:hover .servicio-icon {
    background: linear-gradient(145deg, #dcfce7 0%, #bbf7d0 100%);
    box-shadow:
        0 4px 12px rgba(34, 197, 94, 0.2),
        0 0 0 3px rgba(255, 255, 255, 0.9) inset;
    transform: scale(1.05);
}

.page-declaracion-renta-suiza .solucion-body .servicio-card .servicio-icon svg {
    stroke: #16a34a;
    transition: all 0.3s ease;
}

.page-declaracion-renta-suiza .solucion-body .servicio-card:hover .servicio-icon svg {
    stroke: #15803d;
}

/* --- CTA Section Final --- */
.page-declaracion-renta-suiza .servicios-cta-section .section-seo-block {
    background: transparent;
    border-left: none;
    text-align: center;
}

.page-declaracion-renta-suiza .servicios-cta-section .section-seo-title {
    color: #ffffff;
    font-size: 1.75rem;
}

.page-declaracion-renta-suiza .servicios-cta-section .section-seo-intro {
    color: rgba(255, 255, 255, 0.85);
}

/* --- Responsive General --- */
@media (max-width: 1024px) {
    .page-declaracion-renta-suiza .servicios-grid.servicios-grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .page-declaracion-renta-suiza .cta-options-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .page-declaracion-renta-suiza .proceso-timeline {
        padding-left: 70px;
    }

    .page-declaracion-renta-suiza .proceso-timeline::before {
        left: 24px;
    }

    .page-declaracion-renta-suiza .proceso-timeline .proceso-number {
        left: -50px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .page-declaracion-renta-suiza .highlight-box {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .page-declaracion-renta-suiza .highlight-box::before {
        top: -10px;
        left: 15px;
        font-size: 1rem;
    }

    .page-declaracion-renta-suiza .highlight-box h4 {
        font-size: 1.1rem;
    }

    .page-declaracion-renta-suiza .cta-guarantee {
        padding: 1.75rem 1.5rem;
        margin-top: 2rem;
    }

    .page-declaracion-renta-suiza .cta-guarantee::before {
        top: -12px;
    }

    .page-declaracion-renta-suiza .agitacion-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .page-declaracion-renta-suiza .problema-header {
        padding: 1.75rem 1.5rem 1.5rem;
    }

    .page-declaracion-renta-suiza .problema-titulo {
        font-size: 1.35rem;
    }

    .page-declaracion-renta-suiza .solucion-body {
        padding: 1.75rem 1.5rem;
    }

    .page-declaracion-renta-suiza .hero-stat {
        padding: 1.5rem 1.25rem;
    }

    .page-declaracion-renta-suiza .hero-stat-value {
        font-size: 2rem;
    }

    .page-declaracion-renta-suiza .cta-option-card {
        padding: 2rem 1.5rem;
    }

    .page-declaracion-renta-suiza .servicios-cta-section .section-seo-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-declaracion-renta-suiza .proceso-timeline {
        padding-left: 55px;
    }

    .page-declaracion-renta-suiza .proceso-timeline::before {
        left: 18px;
        width: 3px;
    }

    .page-declaracion-renta-suiza .proceso-timeline .proceso-number {
        left: -42px;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .page-declaracion-renta-suiza .proceso-timeline .proceso-step {
        padding: 1rem;
    }

    .page-declaracion-renta-suiza .proceso-timeline .proceso-content h3 {
        font-size: 1rem;
    }

    .page-declaracion-renta-suiza .proceso-timeline .proceso-content p {
        font-size: 0.9rem;
    }

    .page-declaracion-renta-suiza .highlight-box {
        padding: 1.25rem 1rem;
    }

    .page-declaracion-renta-suiza .highlight-box::before {
        left: 12px;
        font-size: 0.9rem;
        padding: 3px 6px;
    }

    .page-declaracion-renta-suiza .cta-guarantee::before {
        font-size: 1rem;
        padding: 3px 10px;
    }

    .page-declaracion-renta-suiza .agitacion-item {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
    }

    .page-declaracion-renta-suiza .agitacion-item::before {
        width: 22px;
        height: 22px;
        font-size: 0.85rem;
    }

    .page-declaracion-renta-suiza .hero-cta-wrapper {
        flex-direction: column;
        gap: 0.875rem;
    }

    .page-declaracion-renta-suiza .hero-cta-wrapper .btn-primary,
    .page-declaracion-renta-suiza .hero-cta-wrapper .btn-secondary {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .page-declaracion-renta-suiza .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .page-declaracion-renta-suiza .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }

    .page-declaracion-renta-suiza .faq-answer p {
        font-size: 0.9rem;
    }
}

/* --- Animaciones Premium Globales --- */
.page-declaracion-renta-suiza .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-declaracion-renta-suiza .animate-on-scroll.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.page-declaracion-renta-suiza .animate-on-scroll.slide-fade {
    transform: translateY(40px) scale(0.98);
}

.page-declaracion-renta-suiza .animate-on-scroll.slide-fade.animate-visible {
    transform: translateY(0) scale(1);
}

.page-declaracion-renta-suiza .stagger-1 { transition-delay: 0.1s; }
.page-declaracion-renta-suiza .stagger-2 { transition-delay: 0.2s; }
.page-declaracion-renta-suiza .stagger-3 { transition-delay: 0.3s; }
.page-declaracion-renta-suiza .stagger-4 { transition-delay: 0.4s; }
.page-declaracion-renta-suiza .stagger-5 { transition-delay: 0.5s; }
.page-declaracion-renta-suiza .stagger-6 { transition-delay: 0.6s; }

/* Efecto shine para cards */
.page-declaracion-renta-suiza .shine-effect {
    position: relative;
    overflow: hidden;
}

.page-declaracion-renta-suiza .shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.1) 45%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.1) 55%,
        transparent 60%
    );
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.page-declaracion-renta-suiza .shine-effect:hover::after {
    transform: translateX(100%) rotate(45deg);
}

/* Mejora de sombras con grow */
.page-declaracion-renta-suiza .shadow-grow {
    transition: box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-declaracion-renta-suiza .shadow-grow:hover {
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.08),
        0 24px 48px rgba(0, 0, 0, 0.06) !important;
}

/* Transición suave para todos los elementos interactivos */
.page-declaracion-renta-suiza a,
.page-declaracion-renta-suiza button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus states mejorados para accesibilidad */
.page-declaracion-renta-suiza .btn-primary:focus,
.page-declaracion-renta-suiza .btn-secondary:focus,
.page-declaracion-renta-suiza .faq-question:focus {
    outline: 2px solid rgba(34, 197, 94, 0.5);
    outline-offset: 3px;
}

/* --- Clases de utilidad para la pagina --- */
.page-declaracion-renta-suiza .solucion-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.page-declaracion-renta-suiza .solucion-text:first-of-type {
    margin-top: 1.5rem;
}

.page-declaracion-renta-suiza .solucion-text-destacado {
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(145deg, #f0fdf4 0%, #ecfdf5 50%, #f0fdf4 100%);
    border-radius: 14px;
    border-left: 5px solid #22c55e;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.08);
}

.page-declaracion-renta-suiza .tabla-titulo-separado {
    margin-top: 3rem;
}

.page-declaracion-renta-suiza .highlight-box-separado {
    margin-top: 2rem;
}

.page-declaracion-renta-suiza .agitacion-list-en-solucion {
    margin: 1.5rem 0;
}

@media (max-width: 768px) {
    .page-declaracion-renta-suiza .solucion-text {
        font-size: 1rem;
    }

    .page-declaracion-renta-suiza .tabla-titulo-separado {
        margin-top: 2.5rem;
    }
}

/* ==========================================================================
   PAGE IVA SUIZA - ESTILOS ESPECIFICOS
   ========================================================================== */

/* Hero CTA Section */
.hero-cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem 0;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.hero-cta-section .btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    background: #1a1a1a;
    color: #ffffff;
    border: 2px solid #1a1a1a;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta-section .btn-primary:hover {
    background: #FF0000;
    border-color: #FF0000;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

/* Lista con X en lugar de checkmarks (No necesitas si) */
.servicio-card .servicio-includes.no-check li::before {
    content: '✗';
    color: #dc3545;
}

/* Ajuste para servicio-includes con color custom */
.servicio-card .servicio-includes li::before {
    color: var(--check-color, #2ecc71);
}

/* Highlight boxes con colores de fondo personalizados */
.highlight-box ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.highlight-box ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    line-height: 1.6;
}

.highlight-box ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 700;
}

/* Tabla inline en highlight-box */
.highlight-box table {
    width: 100%;
    border-collapse: collapse;
}

.highlight-box table td {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.highlight-box table tr:last-child td {
    border-bottom: none;
}

/* FAQ Styles adicionales para IVA page */
.servicios-ficha-page .faq-list {
    max-width: 900px;
    margin: 2rem auto 0;
}

.servicios-ficha-page .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #1a1a1a;
    transition: background 0.3s ease;
}

.servicios-ficha-page .faq-question:hover {
    background: rgba(248, 249, 250, 0.5);
}

.servicios-ficha-page .faq-question span {
    flex: 1;
}

.servicios-ficha-page .faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: #4a4a4a;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.servicios-ficha-page .faq-item.active .faq-question::after {
    content: '-';
}

.servicios-ficha-page .faq-answer {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.servicios-ficha-page .faq-answer p {
    color: #4a4a4a;
    line-height: 1.8;
    margin: 0;
}

/* Responsive IVA page */
@media (max-width: 768px) {
    .hero-cta-section {
        padding: 1.5rem 1rem;
    }

    .hero-cta-section .btn-primary {
        width: 100%;
        display: block;
        padding: 1rem 1.5rem;
    }

    .servicios-ficha-page .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .servicios-ficha-page .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
}

/* ============================================
   CONVERSION HEADLINE - TOP OF THE FOLD
   Bloque de texto emocional para convertir
   ============================================ */

.conversion-headline {
    padding: 40px 0 60px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.conversion-headline p {
    margin: 0;
}

.conversion-headline .conversion-main {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    line-height: 1.25;
    color: #000000;
    margin-bottom: 8px;
}

.conversion-headline .conversion-main strong {
    font-weight: 700;
}

.conversion-headline .conversion-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    line-height: 1.6;
    color: #444444;
    margin-bottom: 6px;
}

.conversion-headline .conversion-accent {
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    font-weight: 600;
    color: #000000;
    margin-top: 16px;
}

.conversion-headline .conversion-accent strong {
    font-weight: 600;
}

/* Responsive conversion headline */
@media (max-width: 768px) {
    .conversion-headline {
        padding: 24px 0 40px;
    }

    .conversion-headline .conversion-main {
        font-size: 1.4rem;
        margin-bottom: 6px;
    }

    .conversion-headline .conversion-sub {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .conversion-headline .conversion-accent {
        font-size: 1.1rem;
        margin-top: 12px;
    }
}

/* ==========================================================================
   PAGE HOLDING SUIZA - ESTILOS MOVIL OPTIMIZADOS
   ========================================================================== */

/* --- Hero Stats Grid Mobile --- */
.page-holding-suiza .hero-stats-section {
    padding: 2.5rem 0;
}

.page-holding-suiza .hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.page-holding-suiza .hero-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.page-holding-suiza .hero-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(145deg, #f0fdf4, #dcfce7);
    border-radius: 12px;
}

.page-holding-suiza .hero-stat-icon svg {
    stroke: #16a34a;
}

.page-holding-suiza .hero-stat-label {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.3;
}

.page-holding-suiza .hero-cta-wrapper {
    text-align: center;
}

.page-holding-suiza .hero-cta-wrapper .btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 700;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-holding-suiza .hero-cta-wrapper .btn-primary:hover {
    background: #FF0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.25);
}

/* --- Comparativa Grid (España vs Suiza) --- */
.page-holding-suiza .ejemplo-practico {
    margin: 2rem 0;
}

.page-holding-suiza .ejemplo-practico h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.page-holding-suiza .comparativa-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.page-holding-suiza .comparativa-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.75rem;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.page-holding-suiza .comparativa-box.espana {
    border-left: 5px solid #dc3545;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.page-holding-suiza .comparativa-box.suiza {
    border-left: 5px solid #22c55e;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.page-holding-suiza .comparativa-box h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.page-holding-suiza .comparativa-box.espana h4 {
    color: #991b1b;
}

.page-holding-suiza .comparativa-box.suiza h4 {
    color: #166534;
}

.page-holding-suiza .comparativa-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-holding-suiza .comparativa-box ul li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.5;
    border-bottom: 1px solid #f3f4f6;
}

.page-holding-suiza .comparativa-box ul li:last-child {
    border-bottom: none;
}

.page-holding-suiza .comparativa-box ul li.resultado {
    font-weight: 700;
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    border-top: 2px solid #e5e7eb;
}

.page-holding-suiza .comparativa-box.espana ul li.resultado {
    color: #991b1b;
}

.page-holding-suiza .comparativa-box.suiza ul li.resultado {
    color: #166534;
}

/* --- Highlight Box con estilos inline --- */
.page-holding-suiza .highlight-box {
    padding: 1.75rem;
    border-radius: 14px;
    margin: 2rem 0;
}

.page-holding-suiza .highlight-box h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.page-holding-suiza .highlight-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* --- Para Quien Grid --- */
.page-holding-suiza .para-quien-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.page-holding-suiza .para-quien-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.page-holding-suiza .para-quien-box.ideal {
    border-left: 5px solid #22c55e;
}

.page-holding-suiza .para-quien-box.no-recomendado {
    border-left: 5px solid #9ca3af;
}

.page-holding-suiza .para-quien-box h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f3f4f6;
}

.page-holding-suiza .para-quien-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-holding-suiza .para-quien-box ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.5;
    position: relative;
    border-bottom: 1px solid #f3f4f6;
}

.page-holding-suiza .para-quien-box ul li:last-child {
    border-bottom: none;
}

.page-holding-suiza .para-quien-box ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-weight: 700;
}

.page-holding-suiza .para-quien-box.ideal ul li::before {
    content: '✓';
    color: #22c55e;
}

.page-holding-suiza .para-quien-box.no-recomendado ul li::before {
    content: '✗';
    color: #9ca3af;
}

/* --- Blog Link Box --- */
.page-holding-suiza .blog-link-section {
    padding: 3rem 0;
    background: #f8fafc;
}

.page-holding-suiza .blog-link-box {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-holding-suiza .blog-link-box p {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.page-holding-suiza .blog-link-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-holding-suiza .blog-link-box ul li {
    margin-bottom: 0.5rem;
}

.page-holding-suiza .blog-link-box ul li a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.page-holding-suiza .blog-link-box ul li a:hover {
    color: #22c55e;
}

/* --- CTA Final Block --- */
.page-holding-suiza .servicios-cta-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.page-holding-suiza .cta-main-block {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
}

.page-holding-suiza .cta-photo-column {
    flex-shrink: 0;
    text-align: center;
}

.page-holding-suiza .cta-photo-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    margin-bottom: 1rem;
}

.page-holding-suiza .cta-photo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-holding-suiza .cta-photo-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.page-holding-suiza .cta-photo-role {
    font-size: 0.85rem;
    color: #6b7280;
}

.page-holding-suiza .cta-content-column {
    flex: 1;
}

.page-holding-suiza .cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.page-holding-suiza .cta-seo-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.page-holding-suiza .cta-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1rem;
}

.page-holding-suiza .cta-price-block {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin: 1.5rem 0;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(145deg, #f0fdf4 0%, #ecfdf5 100%);
    border-radius: 14px;
    border-left: 5px solid #22c55e;
}

.page-holding-suiza .cta-price {
    font-size: 2rem;
    font-weight: 800;
    color: #166534;
}

.page-holding-suiza .cta-price-detail {
    font-size: 1rem;
    color: #4b5563;
}

.page-holding-suiza .cta-conditions p {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.page-holding-suiza .cta-honesty {
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.page-holding-suiza .cta-honesty p {
    font-size: 0.95rem;
    color: #374151;
    margin: 0 0 0.5rem 0;
}

.page-holding-suiza .cta-honesty p:last-child {
    margin-bottom: 0;
}

.page-holding-suiza .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.page-holding-suiza .cta-button:hover {
    background: #FF0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.25);
}

.page-holding-suiza .cta-slots {
    font-size: 0.9rem;
    color: #9ca3af;
    font-style: italic;
}

/* ==========================================================================
   PAGE HOLDING SUIZA - MOBILE RESPONSIVE
   ========================================================================== */

@media (max-width: 900px) {
    .page-holding-suiza .hero-stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .page-holding-suiza .hero-stat {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 1rem;
        padding: 1rem;
    }

    .page-holding-suiza .hero-stat-icon {
        margin: 0;
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }

    .page-holding-suiza .hero-stat-value {
        font-size: 1.5rem;
    }

    .page-holding-suiza .hero-stat-label {
        font-size: 0.8rem;
    }

    .page-holding-suiza .comparativa-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .page-holding-suiza .para-quien-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .page-holding-suiza .pricing-tables-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-holding-suiza .hero-stats-section {
        padding: 1.75rem 0;
    }

    .page-holding-suiza .hero-cta-wrapper .btn-primary {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .page-holding-suiza .servicios-content {
        padding: 2.5rem 0;
    }

    .page-holding-suiza .section-seo-title {
        font-size: 1.35rem;
    }

    .page-holding-suiza .servicios-content-header p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .page-holding-suiza .comparativa-box {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .page-holding-suiza .comparativa-box h4 {
        font-size: 0.95rem;
    }

    .page-holding-suiza .comparativa-box ul li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }

    .page-holding-suiza .para-quien-box {
        padding: 1.5rem;
        border-radius: 14px;
    }

    .page-holding-suiza .para-quien-box h3 {
        font-size: 1.05rem;
    }

    .page-holding-suiza .para-quien-box ul li {
        font-size: 0.85rem;
        padding: 0.4rem 0 0.4rem 1.25rem;
    }

    .page-holding-suiza .highlight-box {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .page-holding-suiza .highlight-box h3 {
        font-size: 1rem;
    }

    .page-holding-suiza .highlight-box p {
        font-size: 0.9rem;
    }

    /* Tablas */
    .page-holding-suiza .pricing-table {
        margin: 1.5rem 0;
        border-radius: 12px;
    }

    .page-holding-suiza .pricing-table h3 {
        font-size: 1rem;
        padding: 1rem;
    }

    .page-holding-suiza .tabla-precios,
    .page-holding-suiza .tabla-comparativa {
        font-size: 0.8rem;
    }

    .page-holding-suiza .tabla-precios thead th,
    .page-holding-suiza .tabla-comparativa thead th {
        padding: 0.75rem 0.5rem;
        font-size: 0.7rem;
    }

    .page-holding-suiza .tabla-precios tbody td,
    .page-holding-suiza .tabla-comparativa tbody td {
        padding: 0.65rem 0.5rem;
    }

    /* Blog links */
    .page-holding-suiza .blog-link-section {
        padding: 2rem 0;
    }

    .page-holding-suiza .blog-link-box {
        padding: 1.25rem;
    }

    /* CTA Final */
    .page-holding-suiza .servicios-cta-section {
        padding: 2.5rem 0;
    }

    .page-holding-suiza .cta-main-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.75rem;
    }

    .page-holding-suiza .cta-photo-circle {
        width: 110px;
        height: 110px;
    }

    .page-holding-suiza .cta-title {
        font-size: 1.25rem;
    }

    .page-holding-suiza .cta-seo-title {
        font-size: 1.05rem;
    }

    .page-holding-suiza .cta-text p {
        font-size: 0.95rem;
    }

    .page-holding-suiza .cta-price-block {
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
        text-align: center;
        padding: 1rem;
    }

    .page-holding-suiza .cta-price {
        font-size: 1.75rem;
    }

    .page-holding-suiza .cta-button {
        width: 100%;
        text-align: center;
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .page-holding-suiza .cta-honesty {
        padding: 1rem;
    }

    .page-holding-suiza .cta-honesty p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .page-holding-suiza .hero-stats-section {
        padding: 1.25rem 0;
    }

    .page-holding-suiza .hero-stats-grid {
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }

    .page-holding-suiza .hero-stat {
        padding: 0.875rem;
        border-radius: 10px;
    }

    .page-holding-suiza .hero-stat-icon {
        width: 38px;
        height: 38px;
    }

    .page-holding-suiza .hero-stat-icon svg {
        width: 20px;
        height: 20px;
    }

    .page-holding-suiza .hero-stat-value {
        font-size: 1.25rem;
    }

    .page-holding-suiza .hero-stat-label {
        font-size: 0.75rem;
    }

    .page-holding-suiza .servicios-content {
        padding: 2rem 0;
    }

    .page-holding-suiza .section-seo-title {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .page-holding-suiza .servicios-content-header p {
        font-size: 0.9rem;
    }

    .page-holding-suiza .ejemplo-practico h3 {
        font-size: 1.05rem;
    }

    .page-holding-suiza .comparativa-box {
        padding: 1rem;
        border-radius: 10px;
        border-left-width: 4px;
    }

    .page-holding-suiza .comparativa-box h4 {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
    }

    .page-holding-suiza .comparativa-box ul li {
        font-size: 0.8rem;
        padding: 0.35rem 0;
    }

    .page-holding-suiza .para-quien-box {
        padding: 1.25rem;
        border-radius: 12px;
        border-left-width: 4px;
    }

    .page-holding-suiza .para-quien-box h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .page-holding-suiza .para-quien-box ul li {
        font-size: 0.8rem;
        padding: 0.35rem 0 0.35rem 1rem;
    }

    .page-holding-suiza .highlight-box {
        padding: 1rem;
        margin: 1.25rem 0;
        border-radius: 10px;
    }

    .page-holding-suiza .highlight-box h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .page-holding-suiza .highlight-box p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* Tablas móvil pequeño */
    .page-holding-suiza .pricing-table {
        margin: 1.25rem -0.5rem;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .page-holding-suiza .pricing-table h3 {
        font-size: 0.95rem;
        padding: 0.875rem;
    }

    .page-holding-suiza .tabla-precios,
    .page-holding-suiza .tabla-comparativa {
        font-size: 0.75rem;
    }

    .page-holding-suiza .tabla-precios thead th,
    .page-holding-suiza .tabla-comparativa thead th {
        padding: 0.625rem 0.375rem;
        font-size: 0.65rem;
        letter-spacing: 0;
    }

    .page-holding-suiza .tabla-precios tbody td,
    .page-holding-suiza .tabla-comparativa tbody td {
        padding: 0.5rem 0.375rem;
        line-height: 1.4;
    }

    /* Newsletter banner */
    .page-holding-suiza .newsletter-conversion-banner {
        padding: 1.5rem 1rem;
        margin: 0;
        border-radius: 0;
    }

    .page-holding-suiza .newsletter-conversion-banner .hook-text {
        font-size: 1rem;
    }

    .page-holding-suiza .newsletter-conversion-banner .hook-text:first-child {
        font-size: 1.15rem;
    }

    .page-holding-suiza .newsletter-conversion-banner .banner-agitation p,
    .page-holding-suiza .newsletter-conversion-banner .banner-solution p {
        font-size: 0.9rem;
    }

    .page-holding-suiza .newsletter-conversion-banner .banner-agitation {
        padding: 0.875rem;
    }

    /* CTA Final */
    .page-holding-suiza .servicios-cta-section {
        padding: 2rem 0;
    }

    .page-holding-suiza .cta-main-block {
        gap: 1.5rem;
    }

    .page-holding-suiza .cta-photo-circle {
        width: 90px;
        height: 90px;
    }

    .page-holding-suiza .cta-photo-name {
        font-size: 1rem;
    }

    .page-holding-suiza .cta-photo-role {
        font-size: 0.8rem;
    }

    .page-holding-suiza .cta-title {
        font-size: 1.15rem;
    }

    .page-holding-suiza .cta-seo-title {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .page-holding-suiza .cta-text p {
        font-size: 0.9rem;
    }

    .page-holding-suiza .cta-price-block {
        padding: 0.875rem;
        margin: 1.25rem 0;
        border-left-width: 4px;
    }

    .page-holding-suiza .cta-price {
        font-size: 1.5rem;
    }

    .page-holding-suiza .cta-price-detail {
        font-size: 0.9rem;
    }

    .page-holding-suiza .cta-conditions p {
        font-size: 0.85rem;
    }

    .page-holding-suiza .cta-honesty {
        padding: 0.875rem;
        border-radius: 10px;
    }

    .page-holding-suiza .cta-honesty p {
        font-size: 0.85rem;
    }

    .page-holding-suiza .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .page-holding-suiza .cta-slots {
        font-size: 0.8rem;
    }

    /* Blog links */
    .page-holding-suiza .blog-link-section {
        padding: 1.5rem 0;
    }

    .page-holding-suiza .blog-link-box {
        padding: 1rem;
        border-radius: 10px;
    }

    .page-holding-suiza .blog-link-box p {
        font-size: 0.85rem;
    }

    .page-holding-suiza .blog-link-box ul li a {
        font-size: 0.9rem;
    }

    /* Container padding */
    .page-holding-suiza .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
