/* ==========================================================================
   Natufarre - Estilos Generales, Bilingüe y Asistente Claudio
   ========================================================================== */

:root {
    --bg-primary: #FAF6F0;
    --bg-secondary: #F3ECE3;
    --bg-card: #FFFFFF;
    --text-primary: #2C2523;
    --text-secondary: #6A605B;
    --text-muted: #8E827B;
    --accent-terracotta: #B9583F;
    --accent-terracotta-hover: #9D432C;
    --accent-sage: #5F7464;
    --accent-gold: #C98B43;
    --border-subtle: rgba(74, 52, 43, 0.08);
    --border-strong: rgba(74, 52, 43, 0.16);
    --shadow-soft: 0 10px 30px rgba(50, 35, 25, 0.04), 0 2px 8px rgba(50, 35, 25, 0.02);
    --shadow-hover: 0 16px 36px rgba(50, 35, 25, 0.08), 0 4px 12px rgba(50, 35, 25, 0.04);
    --shadow-chat: 0 20px 48px rgba(44, 37, 35, 0.18), 0 4px 16px rgba(44, 37, 35, 0.08);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Tipografía de títulos */
h1, h2, h3, .brand-name, .claudio-name {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--text-primary);
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Banner Superior
   ========================================================================== */
.top-banner {
    background-color: var(--text-primary);
    color: #F8F5F0;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* ==========================================================================
   Header y Navegación
   ========================================================================== */
.site-header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-subtle);
    background-color: rgba(250, 246, 240, 0.94);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
}

.brand-symbol {
    color: var(--accent-terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    padding: 8px;
    border-radius: var(--radius-md);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.85rem;
    line-height: 1;
    letter-spacing: -0.5px;
}

.brand-tagline {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--accent-sage);
    font-weight: 600;
    margin-top: 2px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Selector de Idiomas */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: var(--bg-secondary);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-subtle);
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 3px 6px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.lang-btn:hover {
    color: var(--text-primary);
}

.lang-btn.active {
    color: #FFFFFF;
    background-color: var(--accent-terracotta);
}

.lang-divider {
    font-size: 0.75rem;
    color: var(--text-muted);
    user-select: none;
}

.contact-pill .pill-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-pill .pill-link:hover {
    color: var(--accent-terracotta);
    border-color: var(--accent-terracotta);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(185, 88, 63, 0.12);
}

.contact-pill .pill-whatsapp svg {
    color: #25D366;
    transition: transform 0.2s ease;
}

.contact-pill .pill-whatsapp:hover {
    color: #128C7E;
    border-color: #25D366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.18);
}

.contact-pill .pill-whatsapp:hover svg {
    transform: scale(1.15);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    padding: 70px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(185, 88, 63, 0.07) 0%, rgba(250, 246, 240, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-container {
    max-width: 780px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(185, 88, 63, 0.1);
    color: var(--accent-terracotta);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-terracotta);
    border-radius: 50%;
    position: relative;
}

.status-dot::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background-color: var(--accent-terracotta);
    opacity: 0.4;
    animation: pulse 1.8s infinite ease-out;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    100% { transform: scale(2.2); opacity: 0; }
}

.hero-title {
    font-size: 3.6rem;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-title em {
    font-style: italic;
    color: var(--accent-terracotta);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 40px;
}

.hero-description strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ==========================================================================
   Barra de Progreso del Lanzamiento
   ========================================================================== */
.progress-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    margin-bottom: 40px;
    text-align: left;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.progress-title {
    font-weight: 600;
    color: var(--text-primary);
}

.progress-percent {
    font-weight: 700;
    color: var(--accent-terracotta);
}

.progress-bar-wrapper {
    height: 8px;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-terracotta), var(--accent-gold));
    border-radius: var(--radius-full);
    transition: width 1s ease-in-out;
}

.progress-note {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Tarjeta de Suscripción / Notificación
   ========================================================================== */
.notify-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-soft);
}

.notify-card h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.notify-card p {
    color: var(--text-secondary);
    font-size: 0.98rem;
    margin-bottom: 24px;
}

.subscribe-form {
    max-width: 520px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 10px;
}

.input-group input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.2s ease;
    background-color: #FAF8F5;
}

.input-group input:focus {
    border-color: var(--accent-terracotta);
    background-color: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(185, 88, 63, 0.12);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background-color: var(--accent-terracotta);
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--accent-terracotta-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(185, 88, 63, 0.25);
}

.form-feedback {
    margin-top: 14px;
    font-size: 0.9rem;
    display: none;
    font-weight: 500;
}

.form-feedback.success {
    display: block;
    color: #2F6B3D;
    background: #EAF4EC;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid #C4E3CA;
}

/* ==========================================================================
   Sección de Características / Lo Que Viene
   ========================================================================== */
.features-section {
    padding: 80px 0;
    background-color: var(--bg-secondary);
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.sub-label {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--accent-terracotta);
    margin-bottom: 8px;
}

.section-heading h2 {
    font-size: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

.feature-card {
    background-color: var(--bg-card);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    transition: all 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(185, 88, 63, 0.2);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background-color: rgba(185, 88, 63, 0.08);
    color: var(--accent-terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.45rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ==========================================================================
   Sección Conectar / Contacto Directo
   ========================================================================== */
.connect-section {
    padding: 70px 0;
}

.connect-box {
    background: linear-gradient(135deg, #FAF6F0 0%, #F1E6D8 100%);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.connect-content h2 {
    font-size: 2.1rem;
    margin-bottom: 8px;
}

.connect-content p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.connect-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background-color: #25D366;
    border: 1.5px solid #20BA59;
    border-radius: var(--radius-md);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background-color: #20BA59;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background-color: var(--bg-card);
    border: 1.5px solid var(--text-primary);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background-color: var(--text-primary);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 37, 35, 0.15);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    margin-top: auto;
    background-color: var(--text-primary);
    color: #F8F5F0;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(248, 245, 240, 0.82);
    text-decoration: none;
    font-size: 0.86rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
    color: #FFFFFF;
    transform: translateY(-1px);
}

.footer-link svg {
    flex-shrink: 0;
}

.footer-brand .footer-name {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: #FFFFFF;
}

.footer-brand .footer-desc {
    font-size: 0.85rem;
    color: rgba(248, 245, 240, 0.7);
}

.footer-copy {
    text-align: right;
    font-size: 0.85rem;
    color: rgba(248, 245, 240, 0.7);
}

.love-tag {
    margin-top: 4px;
    font-size: 0.8rem;
    color: rgba(248, 245, 240, 0.5);
}

/* ==========================================================================
   WIDGET DE CLAUDIO (BOT FAQ)
   ========================================================================== */
.claudio-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    font-family: var(--font-sans);
}

/* Tooltip emergente */
.claudio-tooltip {
    position: absolute;
    bottom: 72px;
    right: 0;
    background-color: var(--text-primary);
    color: #FAF6F0;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-chat);
    font-size: 0.84rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.claudio-tooltip.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.claudio-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 24px;
    width: 12px;
    height: 12px;
    background-color: var(--text-primary);
    transform: rotate(45deg);
}

.tooltip-close {
    background: none;
    border: none;
    color: rgba(250, 246, 240, 0.6);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0 2px;
    line-height: 1;
}

.tooltip-close:hover {
    color: #FFFFFF;
}

/* Botón lanzador flotante */
.claudio-launcher {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-terracotta) 0%, #d87053 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(185, 88, 63, 0.35);
    position: relative;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease;
}

.claudio-launcher:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(185, 88, 63, 0.45);
}

.launcher-avatar {
    font-size: 32px;
    line-height: 1;
    user-select: none;
}

.launcher-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-terracotta);
    animation: launcherPulse 2.2s infinite;
    pointer-events: none;
}

@keyframes launcherPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Ventana de Chat */
.claudio-window {
    position: absolute;
    bottom: 76px;
    right: 0;
    width: 380px;
    height: 540px;
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-chat);
    border: 1px solid var(--border-strong);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.9) translateY(20px);
    transform-origin: bottom right;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.claudio-widget.open .claudio-window {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
}

/* Header del Chat */
.claudio-header {
    background: linear-gradient(135deg, var(--text-primary) 0%, #3e3532 100%);
    color: #FAF6F0;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.claudio-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.claudio-avatar-wrap {
    position: relative;
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.claudio-avatar {
    font-size: 24px;
    line-height: 1;
}

.claudio-online-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background-color: #4cd964;
    border: 2px solid var(--text-primary);
    border-radius: 50%;
}

.claudio-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FAF6F0;
    line-height: 1.1;
}

.claudio-role {
    font-size: 0.76rem;
    color: rgba(250, 246, 240, 0.7);
    display: block;
}

.btn-chat-action {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #FAF6F0;
    font-size: 1.3rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.btn-chat-action:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Área de mensajes */
.claudio-history {
    flex: 1;
    padding: 18px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background-color: #FAF8F5;
}

.chat-msg {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    max-width: 88%;
}

.chat-msg.bot {
    align-self: flex-start;
}

.chat-msg.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.msg-avatar {
    width: 28px;
    height: 28px;
    background-color: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    user-select: none;
}

.msg-bubble {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
    word-break: break-word;
}

.chat-msg.bot .msg-bubble {
    background-color: #FFFFFF;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.chat-msg.user .msg-bubble {
    background-color: var(--accent-terracotta);
    color: #FFFFFF;
    border-bottom-right-radius: 4px;
}

/* Indicador de escritura */
.chat-msg.typing .msg-bubble {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background-color: var(--text-muted);
    border-radius: 50%;
    animation: typingBounce 1.3s infinite ease-in-out;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-4px); opacity: 1; }
}

/* Sugerencias Rápidas (Chips) */
.claudio-chips-wrapper {
    background-color: #FAF8F5;
    padding: 6px 14px 10px;
    border-top: 1px solid var(--border-subtle);
}

.claudio-chips {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.claudio-chips::-webkit-scrollbar {
    display: none;
}

.claudio-chip {
    white-space: nowrap;
    background-color: var(--bg-card);
    border: 1px solid var(--border-strong);
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.claudio-chip:hover {
    background-color: var(--accent-terracotta);
    color: #FFFFFF;
    border-color: var(--accent-terracotta);
    transform: translateY(-1px);
}

/* Formulario de Input */
.claudio-form {
    padding: 12px 14px;
    background-color: #FFFFFF;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    gap: 8px;
    align-items: center;
}

.claudio-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-size: 0.88rem;
    outline: none;
    background-color: #FAF8F5;
    transition: all 0.2s ease;
}

.claudio-form input:focus {
    background-color: #FFFFFF;
    border-color: var(--accent-terracotta);
    box-shadow: 0 0 0 3px rgba(185, 88, 63, 0.12);
}

.btn-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-terracotta);
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.btn-send:hover {
    background-color: var(--accent-terracotta-hover);
    transform: scale(1.05);
}

/* ==========================================================================
   Botón Flotante de WhatsApp
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 990;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #FFFFFF;
    padding: 12px 20px 12px 14px;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 2px 8px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-float:hover {
    background-color: #20BA59;
    color: #FFFFFF;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0, 0, 0, 0.12);
}

.whatsapp-float-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float-label {
    white-space: nowrap;
}

/* Enlaces dentro del chat de Claudio */
.chat-inline-link {
    color: var(--accent-terracotta);
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.chat-inline-link:hover {
    color: var(--accent-terracotta-hover);
}

/* ==========================================================================
   Responsividad
   ========================================================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.6rem;
    }

    .header-right {
        gap: 8px;
    }

    .contact-pill .pill-link span {
        display: none;
    }

    .contact-pill .pill-link {
        padding: 8px;
    }

    .input-group {
        flex-direction: column;
    }

    .connect-box {
        flex-direction: column;
        text-align: center;
        padding: 32px 20px;
    }

    .connect-actions {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .connect-actions a {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .footer-copy {
        text-align: center;
    }

    .site-header {
        padding: 14px 0;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    /* WhatsApp flotante en móvil */
    .whatsapp-float {
        bottom: 24px;
        left: 20px;
        width: 58px;
        height: 58px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }

    .whatsapp-float-label {
        display: none;
    }

    /* Ajuste de Claudio en móvil */
    .claudio-window {
        width: calc(100vw - 32px);
        right: -8px;
        height: 480px;
        bottom: 74px;
    }

    .claudio-tooltip {
        display: none !important;
    }
}
