/* ============================================
   PELITTI & ASOCIADOS — Landing Page
   Design System + Styles
   Stack: CSS3 puro, mobile-first
   Paleta: azul petróleo + dorado champagne
   ============================================ */

/* ---- Custom Properties ---- */
:root {
    /* Colors — extraídos de las referencias de marca */
    --color-primary: #1a2332;
    --color-primary-light: #243042;
    --color-primary-dark: #0f1620;
    --color-accent: #c9a96e;
    --color-accent-light: #d4b876;
    --color-accent-dark: #b8974f;
    --color-bg-light: #f8f6f1;
    --color-bg-white: #ffffff;
    --color-bg-dark: #111820;
    --color-text-white: #ffffff;
    --color-text-light: #b8bcc4;
    --color-text-muted: #8a909a;
    --color-text-dark: #1a2332;
    --color-text-body: #3d4552;
    --color-border: rgba(201, 169, 110, 0.2);
    --color-border-light: rgba(255, 255, 255, 0.08);
    --color-success: #2e7d4f;
    --color-error: #c0392b;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Layout */
    --container-max: 1200px;
    --container-narrow: 800px;
    --section-padding: var(--space-2xl) 0;
    --border-radius: 8px;
    --border-radius-lg: 16px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s ease;
    --transition-slow: 0.6s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.18);
    --shadow-gold: 0 4px 20px rgba(201, 169, 110, 0.15);
}

/* ---- Reset ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-body);
    background: var(--color-bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ---- Container ---- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ---- Typography ---- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* Ampersand — clean, common sans-serif for readability */
.amp {
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 300;
    color: inherit;
    opacity: 0.65;
}

/* ---- Section Header (reutilizable) ---- */
.section-header {
    text-align: center;
    max-width: var(--container-narrow);
    margin: 0 auto var(--space-xl);
}

.section-header__tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.section-header__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

.section-header--light .section-header__title {
    color: var(--color-text-white);
}

.section-header__subtitle {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-header--light .section-header__subtitle {
    color: var(--color-text-light);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-base);
    text-decoration: none;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: var(--color-primary-dark);
    box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(201, 169, 110, 0.3);
    background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--secondary {
    background: transparent;
    color: var(--color-text-white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn--secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(201, 169, 110, 0.05);
}

.btn--full {
    width: 100%;
}

.btn--large {
    padding: 1.1rem 2.8rem;
    font-size: 1.05rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: all var(--transition-base);
    background: transparent;
}

.navbar--scrolled {
    background: rgba(15, 22, 32, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.6rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--color-accent);
    z-index: 1001;
}

.navbar__logo-icon {
    width: 38px;
    height: 48px;
    color: var(--color-accent);
}

.navbar__logo-text {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-white);
    letter-spacing: 0.02em;
}

.navbar__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.navbar__toggle-line {
    width: 24px;
    height: 2px;
    background: var(--color-text-white);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.navbar__toggle--active .navbar__toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar__toggle--active .navbar__toggle-line:nth-child(2) {
    opacity: 0;
}

.navbar__toggle--active .navbar__toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(15, 22, 32, 0.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    transition: right var(--transition-base);
    z-index: 1000;
}

.navbar__menu--open {
    right: 0;
}

.navbar__link {
    font-size: 1.3rem;
    color: var(--color-text-white);
    font-weight: 400;
    transition: color var(--transition-fast);
    position: relative;
}

.navbar__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

.navbar__link:hover::after {
    width: 100%;
}

.navbar__link:hover {
    color: var(--color-accent);
}

.navbar__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.4rem;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-base);
}

.navbar__cta:hover {
    background: var(--color-accent-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.navbar__cta svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 169, 110, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, rgba(15, 22, 32, 0.3) 0%, rgba(26, 35, 50, 0.9) 100%);
    z-index: 1;
}

/* Subtle geometric pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(201, 169, 110, 0.03) 50%, transparent 60%);
    z-index: 0;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-3xl) 0 var(--space-2xl);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--space-lg);
    padding: 0.5rem 1.2rem;
    background: rgba(201, 169, 110, 0.1);
    border: 1px solid rgba(201, 169, 110, 0.25);
    border-radius: 50px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--transition-slow) forwards;
    animation-delay: 0.2s;
}

.hero__badge span {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-accent);
}

.hero__title {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: var(--space-md);
    line-height: 1.1;
    opacity: 0;
    animation: fadeInUp 0.8s var(--transition-slow) forwards;
    animation-delay: 0.4s;
}

.hero__title-accent {
    color: var(--color-accent);
    font-style: italic;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto var(--space-lg);
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s var(--transition-slow) forwards;
    animation-delay: 0.6s;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    opacity: 0;
    animation: fadeInUp 0.8s var(--transition-slow) forwards;
    animation-delay: 0.8s;
}

.hero__scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--color-accent);
    opacity: 0.4;
    animation: bounceDown 2s infinite;
}

/* Hero guarantee badge */
.hero__guarantee {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    background: rgba(46, 125, 79, 0.12);
    border: 1px solid rgba(46, 125, 79, 0.3);
    border-radius: 50px;
    margin-bottom: var(--space-md);
    opacity: 0;
    animation: fadeInUp 0.8s var(--transition-slow) forwards;
    animation-delay: 0.7s;
}

.hero__guarantee svg {
    width: 18px;
    height: 18px;
    color: #4ade80;
    flex-shrink: 0;
}

.hero__guarantee span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: #4ade80;
    letter-spacing: 0.02em;
}

.hero__subtitle strong {
    color: var(--color-text-white);
}

/* ============================================
   PROBLEMA / SITUACIÓN
   ============================================ */
.problema {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-light);
}

.problema__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    max-width: 900px;
    margin: 0 auto;
}

.problema__item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--transition-base);
    align-items: flex-start;
}

.problema__item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-border);
}

.problema__number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.6;
}

.problema__item p {
    font-size: 1rem;
    color: var(--color-text-body);
    line-height: 1.7;
}

.problema__item p strong {
    color: var(--color-text-dark);
    font-weight: 600;
}

.problema__cta {
    text-align: center;
    margin-top: var(--space-lg);
}

.problema__cta-text {
    font-size: 1.15rem;
    color: var(--color-text-dark);
    font-weight: 500;
}

.problema__cta-text strong {
    color: var(--color-accent-dark);
}

/* ============================================
   PROCESO / CÓMO FUNCIONA
   ============================================ */
.proceso {
    padding: var(--space-3xl) 0;
    background: var(--color-primary);
}

.proceso__steps {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.proceso__step {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-base);
}

.proceso__step:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(201, 169, 110, 0.3);
}

.proceso__step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    border-radius: 50%;
}

.proceso__step-content h3 {
    font-size: 1.1rem;
    color: var(--color-text-white);
    margin-bottom: 0.4rem;
}

.proceso__step-content p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.proceso__step-content p strong {
    color: var(--color-accent);
}

.proceso__connector {
    width: 2px;
    height: 24px;
    background: rgba(201, 169, 110, 0.25);
    margin: 0 auto;
}

/* ============================================
   GARANTÍA
   ============================================ */
.garantia {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

.garantia__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: var(--space-xl);
    background: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--color-border);
    box-shadow: var(--shadow-lg);
}

.garantia__icon {
    width: 72px;
    height: 72px;
    color: var(--color-accent);
    margin-bottom: var(--space-md);
}

.garantia__icon svg {
    width: 100%;
    height: 100%;
}

.garantia__title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

.garantia__subtitle {
    font-size: 1.05rem;
    color: var(--color-text-body);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
    max-width: 580px;
}

/* ============================================
   SERVICIOS
   ============================================ */
.servicios {
    padding: var(--space-3xl) 0;
    background: var(--color-primary);
}

.servicios__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.servicio-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-base);
}

.servicio-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(201, 169, 110, 0.3);
    transform: translateY(-3px);
}

.servicio-card__icon {
    width: 40px;
    height: 40px;
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.servicio-card__icon svg {
    width: 100%;
    height: 100%;
}

.servicio-card__title {
    font-size: 1.1rem;
    color: var(--color-text-white);
    margin-bottom: 0.5rem;
}

.servicio-card__desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   CONFIANZA / NOSOTROS
   ============================================ */
.confianza {
    padding: var(--space-3xl) 0;
    background: var(--color-bg-light);
}

.confianza__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.confianza__lead {
    font-size: 1.1rem;
    color: var(--color-text-body);
    line-height: 1.9;
    margin-bottom: var(--space-lg);
}

.confianza__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.confianza__stat {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-bg-white);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--transition-fast);
}

.confianza__stat:hover {
    border-color: var(--color-border);
}

.confianza__stat-icon {
    width: 32px;
    height: 32px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.confianza__stat-icon svg {
    width: 100%;
    height: 100%;
}

.confianza__stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-dark);
}

.confianza__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.confianza__image {
    width: 100%;
    max-width: 450px;
    border-radius: var(--border-radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(201, 169, 110, 0.15);
    display: block;
}

/* Crop container — hides Instagram UI chrome (dots, arrows) */
.confianza__photo-crop {
    max-width: 420px;
    width: 100%;
    /* clip off bottom ~40px (dots) and right ~40px (arrow) */
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(201, 169, 110, 0.15);
    /* Negative margin bottom to pull up content that was exposed */
    position: relative;
}

.confianza__photo-crop .confianza__image {
    /* Scale up and shift to crop right arrow + bottom dots */
    max-width: none;
    width: 115%;
    margin-right: -15%;
    /* push right edge (arrow) out of view */
    margin-bottom: -55px;
    /* push bottom (dots) out of view */
    border-radius: 0;
    box-shadow: none;
    border: none;
}

/* ============================================
   CONTACTO
   ============================================ */
.contacto {
    padding: var(--space-3xl) 0;
    background: var(--color-primary);
}

.contacto__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
}

.contacto__form-wrapper {
    position: relative;
}

.contacto__form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.form-optional {
    font-weight: 400;
    color: var(--color-text-muted);
}

.form-input {
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-white);
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input::placeholder {
    color: var(--color-text-muted);
}

.form-input:focus {
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-input:invalid:not(:placeholder-shown) {
    border-color: var(--color-error);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-disclaimer {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    text-align: center;
    line-height: 1.5;
    margin-top: -0.5rem;
}

/* Form feedback */
.form-feedback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    border-radius: var(--border-radius-lg);
    animation: fadeIn 0.4s ease;
}

.form-feedback[hidden] {
    display: none;
}

.form-feedback svg {
    width: 56px;
    height: 56px;
}

.form-feedback h3 {
    font-size: 1.3rem;
    color: var(--color-text-white);
}

.form-feedback p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.form-feedback--success {
    background: rgba(46, 125, 79, 0.15);
    border: 1px solid rgba(46, 125, 79, 0.3);
}

.form-feedback--success svg {
    color: var(--color-success);
}

.form-feedback--error {
    background: rgba(192, 57, 43, 0.12);
    border: 1px solid rgba(192, 57, 43, 0.3);
}

.form-feedback--error svg {
    color: var(--color-error);
}

/* Contact info */
.contacto__info-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
}

.contacto__info-title {
    font-size: 1.15rem;
    color: var(--color-text-white);
    margin-bottom: var(--space-md);
}

.contacto__channel {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-top: 1px solid var(--color-border-light);
}

.contacto__channel:first-of-type {
    border-top: none;
}

.contacto__channel svg {
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.contacto__channel strong {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 0.15rem;
}

.contacto__channel a {
    color: var(--color-accent);
    font-size: 0.95rem;
}

.contacto__channel a:hover {
    text-decoration: underline;
}

.contacto__channel span {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.contacto__schedule {
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: rgba(201, 169, 110, 0.06);
    border-radius: var(--border-radius);
    border: 1px solid rgba(201, 169, 110, 0.12);
}

.contacto__schedule h4 {
    font-size: 0.9rem;
    color: var(--color-accent);
    margin-bottom: 0.3rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.contacto__schedule p {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.contacto__schedule-note {
    font-size: 0.82rem !important;
    color: var(--color-text-muted) !important;
    margin-top: 0.3rem;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 169, 110, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final__content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-final__title {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    color: var(--color-text-white);
    margin-bottom: var(--space-sm);
}

.cta-final__subtitle {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: var(--space-xl) 0 var(--space-md);
    background: var(--color-bg-dark);
    border-top: 1px solid var(--color-border-light);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--color-border-light);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
}

.footer__logo-icon {
    width: 32px;
    height: 40px;
    color: var(--color-accent);
}

.footer__logo span {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-white);
}

.footer__logo span.amp {
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 300;
    opacity: 0.65;
}

.footer__tagline {
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

.footer__links h4,
.footer__contact h4 {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    margin-bottom: var(--space-sm);
}

.footer__links a,
.footer__contact a,
.footer__contact span {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    padding: 0.2rem 0;
    transition: color var(--transition-fast);
}

.footer__links a:hover,
.footer__contact a:hover {
    color: var(--color-accent);
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding-top: var(--space-md);
}

.footer__bottom p {
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

.footer__social {
    display: flex;
    gap: var(--space-sm);
}

.footer__social a {
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer__social a:hover {
    color: var(--color-accent);
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: all var(--transition-base);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.problema__grid [data-reveal]:nth-child(2) {
    transition-delay: 0.1s;
}

.problema__grid [data-reveal]:nth-child(3) {
    transition-delay: 0.2s;
}

.problema__grid [data-reveal]:nth-child(4) {
    transition-delay: 0.3s;
}

.servicios__grid [data-reveal]:nth-child(2) {
    transition-delay: 0.08s;
}

.servicios__grid [data-reveal]:nth-child(3) {
    transition-delay: 0.16s;
}

.servicios__grid [data-reveal]:nth-child(4) {
    transition-delay: 0.24s;
}

.servicios__grid [data-reveal]:nth-child(5) {
    transition-delay: 0.32s;
}

.servicios__grid [data-reveal]:nth-child(6) {
    transition-delay: 0.40s;
}

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ============================================
   RESPONSIVE — Tablet
   ============================================ */
@media (min-width: 640px) {
    .hero__actions {
        flex-direction: row;
        justify-content: center;
    }

    .problema__grid {
        grid-template-columns: 1fr 1fr;
    }

    .servicios__grid {
        grid-template-columns: 1fr 1fr;
    }

    .confianza__stats {
        grid-template-columns: 1fr 1fr;
    }

    .contacto__grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ============================================
   RESPONSIVE — Desktop
   ============================================ */
@media (min-width: 1024px) {
    .navbar__toggle {
        display: none;
    }

    .navbar__menu {
        position: static;
        width: auto;
        height: auto;
        background: none;
        flex-direction: row;
        gap: var(--space-lg);
    }

    .navbar__link {
        font-size: 0.9rem;
    }

    .servicios__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .confianza__grid {
        grid-template-columns: 1.2fr 1fr;
    }

    .contacto__grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}