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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0ea5e9;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
}

.ad-disclosure {
    background: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #fde68a;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 37px;
    z-index: 999;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 80px 6%;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 550px;
    z-index: 2;
    position: relative;
    padding-right: 60px;
}

.hero-title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    color: var(--text-dark);
}

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

.cta-hero {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: background 0.3s, transform 0.2s;
}

.cta-hero:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 55%;
    z-index: 1;
    transform: rotate(3deg);
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    object-fit: cover;
    background-color: #e5e7eb;
}

.intro-offset {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 120px 6%;
    background: var(--bg-light);
    margin-top: -50px;
    position: relative;
}

.intro-block-left {
    flex: 1;
    padding-left: 8%;
}

.intro-block-left h2 {
    font-size: 42px;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.intro-block-left p {
    font-size: 19px;
    color: var(--text-light);
    line-height: 1.7;
}

.intro-visual-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-card {
    background: white;
    padding: 35px 45px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    min-width: 250px;
    transform: rotate(-2deg);
}

.stat-card:nth-child(2) {
    transform: rotate(2deg);
    margin-left: 40px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

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

.problema-irregular {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 100px 10% 100px 15%;
    background: white;
}

.problema-content {
    flex: 1;
    max-width: 520px;
}

.problema-content h3 {
    font-size: 36px;
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 700;
}

.problema-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.6;
}

.problema-irregular img {
    width: 40%;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    transform: translateY(-30px);
    object-fit: cover;
    background-color: #e5e7eb;
}

.beneficios-stacked {
    padding: 100px 6%;
    background: var(--bg-light);
}

.section-title-offset {
    font-size: 44px;
    margin-bottom: 70px;
    padding-left: 10%;
    font-weight: 700;
    line-height: 1.2;
}

.beneficio-block {
    display: flex;
    align-items: center;
    gap: 70px;
    margin-bottom: 80px;
    padding: 0 5%;
}

.beneficio-block.reverse {
    flex-direction: row-reverse;
}

.beneficio-visual {
    flex: 0 0 45%;
}

.beneficio-visual img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: #e5e7eb;
}

.beneficio-texto {
    flex: 1;
}

.beneficio-texto h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.beneficio-texto p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.testimonios-diagonal {
    padding: 100px 6%;
    background: white;
    transform: skewY(-2deg);
    margin: 60px 0;
}

.testimonios-diagonal > * {
    transform: skewY(2deg);
}

.testimonios-diagonal h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.testimonios-grid {
    display: flex;
    gap: 35px;
    justify-content: center;
}

.testimonio-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    max-width: 350px;
    border-left: 4px solid var(--primary-color);
}

.testimonio-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-style: italic;
}

.testimonio-autor {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.servicios-preview {
    padding: 100px 6%;
    background: var(--bg-light);
}

.servicios-header-irregular {
    max-width: 600px;
    margin-bottom: 60px;
    padding-left: 5%;
}

.servicios-header-irregular h2 {
    font-size: 44px;
    margin-bottom: 15px;
    font-weight: 700;
}

.servicios-header-irregular p {
    font-size: 19px;
    color: var(--text-light);
}

.servicios-cards-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 3%;
}

.servicio-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

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

.servicio-card.destacado {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    transform: scale(1.05);
}

.servicio-card.destacado h3,
.servicio-card.destacado p {
    color: white;
}

.badge-popular {
    background: var(--accent-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

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

.servicio-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.precio {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.servicio-card.destacado .precio {
    color: white;
}

.btn-servicio {
    background: var(--primary-color);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    width: 100%;
}

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

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

.formulario-diagonal {
    padding: 100px 8%;
    background: white;
    max-width: 1000px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.contact-form-asymmetric {
    background: var(--bg-light);
    padding: 50px;
    border-radius: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s, transform 0.2s;
}

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

.disclaimer-section {
    padding: 60px 8%;
    background: #fef3c7;
    border-top: 2px solid #fbbf24;
    border-bottom: 2px solid #fbbf24;
}

.disclaimer-text {
    font-size: 14px;
    color: #78350f;
    line-height: 1.7;
    max-width: 1200px;
    margin: 0 auto;
    text-align: justify;
}

.footer-irregular {
    background: #111827;
    color: #9ca3af;
    padding: 60px 6% 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-col a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 25px 6%;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: var(--text-dark);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.btn-cookie-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-cookie-reject {
    background: #e5e7eb;
    color: var(--text-dark);
}

.btn-cookie-reject:hover {
    background: #d1d5db;
    transform: translateY(-1px);
}

.link-cookie {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.page-header-diagonal {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 100px 6%;
    text-align: center;
    transform: skewY(-2deg);
    margin-top: -20px;
}

.page-header-diagonal > * {
    transform: skewY(2deg);
}

.page-header-diagonal h1 {
    font-size: 52px;
    margin-bottom: 15px;
    font-weight: 800;
}

.page-header-diagonal p {
    font-size: 20px;
    opacity: 0.9;
}

.historia-offset {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 100px 8%;
}

.historia-texto {
    flex: 1;
}

.historia-texto h2 {
    font-size: 40px;
    margin-bottom: 25px;
    font-weight: 700;
}

.historia-texto p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.7;
}

.historia-imagen {
    flex: 0 0 45%;
}

.historia-imagen img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    object-fit: cover;
    background-color: #e5e7eb;
}

.valores-irregular {
    padding: 80px 10%;
    background: var(--bg-light);
}

.valores-irregular h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.valor-block {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    margin-left: 5%;
}

.valor-block:nth-child(odd) {
    margin-left: 0;
    margin-right: 5%;
}

.valor-block h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.valor-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.equipo-asimetrico {
    padding: 80px 6%;
    background: white;
}

.equipo-asimetrico h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.equipo-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.equipo-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.equipo-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    flex: 1;
    max-width: 350px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.equipo-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.equipo-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.proceso-diagonal {
    padding: 80px 8%;
    background: var(--bg-light);
}

.proceso-diagonal h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.paso-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    padding: 0 5%;
}

.paso-wrapper.reverse {
    flex-direction: row-reverse;
}

.paso-numero {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.2;
    flex-shrink: 0;
}

.paso-contenido h3 {
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 700;
}

.paso-contenido p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-about {
    text-align: center;
    padding: 80px 6%;
    background: white;
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-about p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: background 0.3s, transform 0.2s;
}

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

.servicios-detalle {
    padding: 80px 6%;
}

.servicio-detalle-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    padding: 50px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.servicio-detalle-card.reverse {
    flex-direction: row-reverse;
}

.servicio-detalle-card.destacado-especial {
    flex-direction: column;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid var(--primary-color);
}

.servicio-imagen {
    flex: 0 0 40%;
}

.servicio-imagen img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
    background-color: #e5e7eb;
}

.servicio-imagen-grande {
    width: 100%;
    margin-bottom: 30px;
}

.servicio-imagen-grande img {
    width: 100%;
    max-height: 400px;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e5e7eb;
}

.servicio-info {
    flex: 1;
}

.servicio-info-full {
    width: 100%;
}

.badge-premium {
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.servicio-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.servicio-info p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.servicio-incluye {
    list-style: none;
    margin-bottom: 30px;
}

.servicio-incluye li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.servicio-incluye li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.servicio-incluye-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.servicio-incluye-grid li {
    flex: 1 1 calc(50% - 15px);
}

.precio-destacado {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 20px 0;
}

.precio-destacado-grande {
    font-size: 44px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 25px 0;
    text-align: center;
}

.btn-seleccionar {
    background: var(--primary-color);
    color: white;
    padding: 14px 35px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.btn-seleccionar-grande {
    background: var(--primary-color);
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    display: block;
    margin: 0 auto;
}

.btn-seleccionar-grande:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.comparativa-servicios {
    padding: 80px 6%;
    background: var(--bg-light);
}

.comparativa-servicios h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.comparativa-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.comparativa-item {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    flex: 1;
    max-width: 350px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.comparativa-item.destacado {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.comparativa-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.comparativa-item p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.comparativa-item.destacado p {
    color: rgba(255,255,255,0.9);
}

.rango-precio {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.comparativa-item.destacado .rango-precio {
    color: white;
}

.formulario-servicios {
    padding: 80px 8%;
    background: white;
}

.formulario-servicios h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.formulario-servicios > p {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.contacto-layout {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 80px 8%;
}

.contacto-info-offset {
    flex: 1;
}

.contacto-info-offset h2 {
    font-size: 40px;
    margin-bottom: 40px;
    font-weight: 700;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

.info-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.contacto-imagen-diagonal {
    flex: 0 0 45%;
}

.contacto-imagen-diagonal img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    transform: rotate(-3deg);
    object-fit: cover;
    background-color: #e5e7eb;
}

.mapa-ubicacion {
    padding: 80px 8%;
    background: var(--bg-light);
}

.mapa-ubicacion h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.mapa-ubicacion > p {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.mapa-placeholder {
    background: white;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    max-width: 800px;
    margin: 0 auto;
}

.mapa-info p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.como-trabajamos-contacto {
    padding: 80px 8%;
    background: white;
}

.como-trabajamos-contacto h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.proceso-contacto {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.paso-contacto {
    flex: 1;
    max-width: 280px;
    text-align: center;
}

.paso-icono {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

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

.paso-contacto p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.preguntas-frecuentes {
    padding: 80px 8%;
    background: var(--bg-light);
}

.preguntas-frecuentes h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.faq-item {
    background: white;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

.faq-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-contacto {
    text-align: center;
    padding: 80px 6%;
    background: white;
}

.cta-contacto h2 {
    font-size: 38px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-contacto p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.thanks-hero {
    padding: 120px 6% 80px;
    text-align: center;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.checkmark-circle {
    width: 100px;
    height: 100px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.checkmark {
    width: 40px;
    height: 20px;
    border-left: 6px solid white;
    border-bottom: 6px solid white;
    transform: rotate(-45deg);
    margin-top: -10px;
}

.thanks-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

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

.thanks-info {
    padding: 60px 6%;
    background: white;
}

.info-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.info-item {
    flex: 1;
    max-width: 350px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

.info-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.servicio-seleccionado {
    padding: 60px 6%;
    background: var(--bg-light);
}

.servicio-seleccionado h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.servicio-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    border-left: 4px solid var(--primary-color);
}

.servicio-box p {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.servicio-nota {
    font-size: 15px;
    color: var(--text-light);
}

.siguiente-paso {
    padding: 60px 6%;
    background: white;
}

.siguiente-paso h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.enlaces-rapidos {
    display: flex;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.enlace-card {
    flex: 1;
    max-width: 350px;
    padding: 35px;
    background: var(--bg-light);
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.enlace-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.enlace-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

.enlace-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-cta {
    text-align: center;
    padding: 60px 6%;
    background: var(--bg-light);
}

.thanks-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.btn-volver {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: background 0.3s, transform 0.2s;
}

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

.legal-header {
    background: var(--bg-light);
    padding: 80px 6%;
    text-align: center;
}

.legal-header h1 {
    font-size: 44px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-update {
    font-size: 15px;
    color: var(--text-light);
}

.legal-content {
    padding: 60px 8%;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 25px;
    font-weight: 700;
    color: var(--primary-color);
}

.legal-section p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-section li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.legal-section a:hover {
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookies-table th {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--text-dark);
}

.cookies-table td {
    font-size: 15px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        width: 100%;
        margin-top: 40px;
    }

    .intro-offset,
    .problema-irregular,
    .beneficio-block,
    .historia-offset,
    .contacto-layout {
        flex-direction: column;
    }

    .testimonios-grid,
    .servicios-cards-offset,
    .equipo-grid,
    .comparativa-grid,
    .proceso-contacto,
    .info-grid,
    .enlaces-rapidos,
    .footer-content {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }

    .servicio-detalle-card {
        flex-direction: column !important;
        padding: 30px;
    }
}
