:root {
    /* Paleta de Colores - Modo Claro Profesional & Moderno */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    
    /* Azul corporativo de alta vibrancia (TodoPC) */
    --accent-primary: #2563eb;
    --accent-hover: #1d4ed8;
    --accent-light: #eff6ff;
    --accent-border: #bfdbfe;
    
    /* Colores funcionales */
    --success: #10b981;
    --success-bg: #ecfdf5;
    --whatsapp: #25D366;
    --whatsapp-hover: #20ba59;
    
    /* Bordes y sombras */
    --border-color: #e2e8f0;
    --border-subtle: #edf2f7;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px -2px rgba(0, 0, 0, 0.08), 0 2px 6px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.09), 0 4px 12px -2px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 25px rgba(37, 99, 235, 0.18);
    
    /* Tipografía y radios */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Utilidades básicas */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
}

/* --- Badges --- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-accent {
    background-color: var(--accent-light);
    color: var(--accent-primary);
    border: 1px solid var(--accent-border);
}

.badge-muted {
    background-color: var(--bg-tertiary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

/* --- Botones --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: white;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.btn-outline {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background-color: var(--bg-secondary);
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: white;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1.05rem;
    border-radius: 12px;
}

.btn-block {
    width: 100%;
}

/* --- Header & Nav --- */
.header {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.45rem;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.logo-icon-wrapper {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--accent-primary), #1d4ed8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.logo-icon {
    width: 22px;
    height: 22px;
}

.logo-accent {
    color: var(--accent-primary);
}

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

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

/* --- Hero Section --- */
.hero {
    padding: 70px 0 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

.hero-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-title {
    font-size: 3.1rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #0f172a;
    letter-spacing: -0.03em;
}

.text-highlight {
    color: var(--accent-primary);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.65;
    max-width: 580px;
}

.hero-features-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.hero-feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.chip-icon {
    width: 18px;
    height: 18px;
    color: var(--success);
    background-color: var(--success-bg);
    border-radius: 50%;
    padding: 2px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 280px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

.floating-card-icon {
    width: 40px;
    height: 40px;
    background-color: var(--accent-light);
    color: var(--accent-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* --- Location Banner --- */
.location-banner {
    background: linear-gradient(90deg, #eff6ff 0%, #dbeafe 100%);
    border-top: 1px solid var(--accent-border);
    border-bottom: 1px solid var(--accent-border);
    padding: 24px 0;
}

.location-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
}

.location-badge-icon {
    width: 44px;
    height: 44px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.location-banner h2 {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-primary);
}

.location-banner h2 strong {
    color: var(--accent-primary);
    font-weight: 700;
}

/* --- Global Section Styles --- */
.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    margin-top: 10px;
    margin-bottom: 14px;
    color: var(--text-primary);
    letter-spacing: -0.025em;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 680px;
}

.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* --- Services Section --- */
.services {
    padding: 90px 0;
    background-color: var(--bg-secondary);
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 54px auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.service-card {
    background-color: var(--bg-primary);
    padding: 34px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: #cbd5e1;
}

.service-card.highlight-glow:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 12px 28px -4px rgba(37, 99, 235, 0.15);
}

.service-icon-wrapper {
    width: 58px;
    height: 58px;
    background-color: var(--accent-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent-primary);
    transition: transform 0.2s;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.06);
}

.service-icon {
    width: 28px;
    height: 28px;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.service-text {
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.88rem;
    color: var(--text-muted);
}

.service-bullets li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-bullets li i {
    width: 16px;
    height: 16px;
    color: var(--accent-primary);
    flex-shrink: 0;
}

/* Tarjeta destacada */
.highlight-card {
    border-color: var(--accent-primary);
    background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
    box-shadow: 0 8px 24px -2px rgba(37, 99, 235, 0.15);
}

.highlight-card .service-icon-wrapper {
    background: linear-gradient(135deg, var(--accent-primary), #1d4ed8);
    color: white;
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(135deg, var(--accent-primary), #1d4ed8);
    color: white;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.services-footer-cta {
    margin-top: 50px;
    text-align: center;
    background-color: white;
    border: 1px dashed var(--accent-border);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.services-footer-cta p {
    font-size: 1.05rem;
    color: var(--text-secondary);
}

/* --- Process Section --- */
.process {
    padding: 90px 0;
    background-color: var(--bg-primary);
}

.process-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-icon-wrapper {
    width: 76px;
    height: 76px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: var(--accent-primary);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.process-icon-wrapper i {
    width: 32px;
    height: 32px;
}

.step-number {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 26px;
    height: 26px;
    background-color: var(--accent-primary);
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 38px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.process-step:last-child::after {
    display: none;
}

.process-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.process-text {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.5;
}

/* --- Sobre Mí Section --- */
.about {
    padding: 90px 0;
    background-color: var(--bg-secondary);
}

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

.features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon-wrapper {
    width: 36px;
    height: 36px;
    background-color: var(--accent-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-primary);
}

.feature-item strong {
    display: block;
    font-size: 1.05rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.93rem;
}

.about-socials {
    background-color: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.social-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.social-subtitle {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.social-link.youtube:hover { border-color: #ff0000; color: #ff0000; background-color: #fff5f5; }
.social-link.instagram:hover { border-color: #E1306C; color: #E1306C; background-color: #fff0f6; }
.social-link.twitch:hover { border-color: #9146FF; color: #9146FF; background-color: #f7f0ff; }
.social-link.kick:hover { border-color: #53fc18; color: #166534; background-color: #f0fdf4; }

/* --- Consejos Section --- */
.tips {
    padding: 90px 0;
    background-color: var(--bg-primary);
}

.tips-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

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

.tip-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.tip-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.tip-icon-wrapper {
    background: white;
    padding: 10px;
    border-radius: 10px;
    color: var(--accent-primary);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tip-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.tip-text {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.55;
}

/* --- FAQ Section --- */
.faq {
    padding: 90px 0;
    background-color: var(--bg-secondary);
}

.faq-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 46px auto;
}

.faq-list {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: #cbd5e1;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--bg-secondary);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0, 1, 0, 1);
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 24px 22px 24px;
    max-height: 500px;
    transition: all 0.3s ease-in;
}

.faq-icon {
    transition: transform 0.3s;
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: -0.025em;
}

.cta-subtitle {
    font-size: 1.15rem;
    color: #94a3b8;
    margin-bottom: 32px;
}

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

/* --- Footer --- */
.footer {
    background-color: #0b0f19;
    color: #94a3b8;
    padding-top: 70px;
    border-top: 1px solid #1e293b;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
}

.brand-col .logo {
    color: white;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 320px;
}

.footer-location-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #60a5fa;
    background: rgba(37, 99, 235, 0.12);
    padding: 6px 12px;
    border-radius: 8px;
}

.footer-heading {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.92rem;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(3px);
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    font-size: 0.92rem;
    transition: color 0.2s;
}

.footer-contact-item:hover {
    color: #60a5fa;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 24px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #64748b;
}

/* --- Contact Page Specific Styles --- */
.contact-page {
    background-color: var(--bg-secondary);
}

.contact-main {
    padding: 60px 0 100px 0;
}

.contact-container {
    display: flex;
    justify-content: center;
}

.contact-card {
    background-color: var(--bg-primary);
    width: 100%;
    max-width: 640px;
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-header {
    text-align: center;
    margin-bottom: 36px;
}

.contact-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 10px;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.contact-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.55;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: #94a3b8;
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.form-input {
    width: 100%;
    padding: 12px 16px 12px 46px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.96rem;
    color: var(--text-primary);
    transition: all 0.2s;
    background-color: var(--bg-primary);
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 14px center;
    background-repeat: no-repeat;
    background-size: 18px 18px;
    padding-right: 40px;
}

.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.96rem;
    color: var(--text-primary);
    transition: all 0.2s;
    background-color: var(--bg-primary);
    resize: vertical;
    min-height: 110px;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

/* Status Message */
.status-message {
    padding: 16px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    display: none;
    margin-top: 14px;
}

.status-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.status-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Divider */
.contact-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 36px 0 28px 0;
    color: #94a3b8;
    font-size: 0.88rem;
    font-weight: 500;
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}

.contact-divider span {
    padding: 0 16px;
}

/* Other Contacts */
.other-contacts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 14px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    transition: all 0.2s;
    color: var(--text-primary);
}

.contact-link:hover {
    background-color: #eff6ff;
    border-color: var(--accent-border);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.contact-icon-wrapper {
    background-color: white;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--accent-primary);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.contact-link-text {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.contact-link-text strong {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.contact-link-text span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* --- Responsive Design (Móviles y Tablets) --- */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 900px) {
    .hero-content, 
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        justify-content: flex-start;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
    
    .process-step:nth-child(2)::after {
        display: none;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .hero-floating-card {
        left: 10px;
        bottom: -15px;
    }
}

@media (max-width: 640px) {
    .header-content {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        height: auto;
        padding: 14px 20px;
    }

    .nav {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .nav-link {
        font-size: 0.88rem;
    }

    .nav .btn {
        width: 100%;
        text-align: center;
        margin-top: 4px;
    }

    .hero {
        padding: 36px 0 50px 0;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-lg {
        width: 100%;
    }

    .location-banner-content {
        flex-direction: column;
        gap: 12px;
    }

    .location-banner h2 {
        font-size: 1.1rem;
    }

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

    .process-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .process-step::after {
        display: none;
    }

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

    .cta-title {
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .other-contacts {
        grid-template-columns: 1fr;
    }
}
