/* ============================================
   INZETIA - Estilos Épicos
   ============================================ */

/* Variables CSS */
:root {
    --primary-dark: #0f172a;
    --primary-medium: #1e293b;
    --primary-light: #334155;
    --primary-blue: #1e3a8a;
    --accent-blue: #3b82f6;
    --accent-orange: #f97316;
    --accent-orange-light: #fb923c;
    --text-light: #f1f5f9;
    --text-muted: #94a3b8;
    --text-dark: #cbd5e1;
    --success: #10b981;
    --whatsapp: #25D366;
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(59, 130, 246, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    background: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Elements */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

.bg-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.bg-glow-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-blue);
    top: -200px;
    right: -200px;
    animation: floatGlow 20s ease-in-out infinite;
}

.bg-glow-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-orange);
    bottom: -200px;
    left: -200px;
    animation: floatGlow 25s ease-in-out infinite reverse;
}

@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 50px); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    text-decoration: none;
}

.nav-logo-svg {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--accent-orange);
    background: rgba(249, 115, 22, 0.1);
}

.nav-link.nav-btn {
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
    color: white;
    border: none;
}

.nav-link.nav-btn:hover {
    background: linear-gradient(135deg, var(--accent-orange), #ea580c);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
}

.hero-bg-lines {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.hero-lines-svg {
    width: 100%;
    height: 100%;
}

.hero-line {
    stroke: var(--accent-blue);
    stroke-width: 0.2;
    stroke-dasharray: 5 5;
    animation: dashMove 30s linear infinite;
}

@keyframes dashMove {
    to { stroke-dashoffset: -100; }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out;
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.title-line {
    display: block;
    font-size: clamp(3rem, 10vw, 5.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--text-light) 50%, var(--accent-orange) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease-in-out infinite;
    letter-spacing: -2px;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.title-sub {
    display: block;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-dark);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--glass-border);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    background: var(--accent-orange);
    border-radius: 2px;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
    color: white;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-light);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--accent-blue);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-orange);
    border: 2px solid var(--accent-orange);
}

.btn-outline:hover {
    background: var(--accent-orange);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

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

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(249, 115, 22, 0.2));
    color: var(--accent-orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.5) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    color: var(--accent-blue);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: var(--accent-orange);
    transform: scale(1.1);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.service-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-orange));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover .service-hover-line {
    transform: scaleX(1);
}

/* ============================================
   STATS
   ============================================ */
.stats {
    background: linear-gradient(135deg, var(--primary-medium), var(--primary-dark));
    padding: 80px 0;
}

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

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    color: var(--accent-orange);
}

.stat-icon svg {
    width: 100%;
    height: 100%;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number::before {
    content: '+';
    color: var(--accent-blue);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   TEAM
   ============================================ */
.team {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, transparent 100%);
}

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

@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-orange);
    box-shadow: 0 30px 60px rgba(249, 115, 22, 0.15);
}

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    position: relative;
}

.team-avatar svg {
    width: 100%;
    height: 100%;
}

.team-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 32px;
    height: 32px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
}

.team-role {
    font-size: 0.95rem;
    color: var(--accent-blue);
    margin-bottom: 4px;
}

.team-specialty {
    font-size: 0.9rem;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 20px;
}

.team-contact {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.contact-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.contact-btn svg {
    width: 24px;
    height: 24px;
}

.contact-btn.phone {
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.contact-btn.whatsapp {
    background: linear-gradient(135deg, var(--whatsapp), #128C7E);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.contact-btn.email {
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.contact-btn:hover {
    transform: translateY(-5px) scale(1.1);
}

/* ============================================
   DEVELOPMENT
   ============================================ */
.development {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-medium));
}

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

.dev-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
}

.dev-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.dev-features {
    list-style: none;
    margin-bottom: 30px;
}

.dev-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 1rem;
}

.dev-features svg {
    width: 20px;
    height: 20px;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.dev-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dev-card {
    width: 280px;
    height: 280px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.dev-card:hover {
    transform: rotate(-5deg) scale(1.05);
    border-color: var(--accent-orange);
    box-shadow: 0 30px 60px rgba(249, 115, 22, 0.2);
}

.dev-card-icon {
    width: 120px;
    height: 120px;
    color: var(--accent-blue);
    margin-bottom: 20px;
    transition: var(--transition);
}

.dev-card:hover .dev-card-icon {
    color: var(--accent-orange);
}

.dev-card-icon svg {
    width: 100%;
    height: 100%;
}

.dev-card-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
}

/* ============================================
   CLIENT AREA
   ============================================ */
.client-area {
    background: linear-gradient(180deg, transparent, rgba(30, 58, 138, 0.1));
}

.client-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 60px 40px;
    transition: var(--transition);
}

.client-box:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 30px 80px rgba(59, 130, 246, 0.2);
}

.client-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    color: var(--accent-blue);
}

.client-icon svg {
    width: 100%;
    height: 100%;
}

.client-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
}

.client-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    background: linear-gradient(180deg, rgba(30, 58, 138, 0.1), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info-box {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
}

.contact-info-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 24px;
    height: 24px;
}

.contact-item-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-item-value {
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item-value:hover {
    color: var(--accent-orange);
}

.contact-social {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.contact-social > span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

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

.social-icon:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: white;
    transform: translateY(-3px);
}

.contact-form-box {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
}

/* ============================================
   FORMS
   ============================================ */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(30, 41, 59, 0.5);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

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

.recaptcha-container {
    display: flex;
    justify-content: center;
    margin: 24px 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--primary-dark);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
    position: relative;
    z-index: 10;
}

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

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.footer-contact p {
    margin-bottom: 12px;
}

.footer-contact a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--accent-orange);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social .social-icon {
    width: 38px;
    height: 38px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--primary-medium);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    max-width: 550px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlide 0.3s ease-out;
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.close:hover {
    color: var(--accent-orange);
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 0.95rem;
    color: var(--accent-blue);
    margin-bottom: 30px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .dev-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dev-visual {
        order: -1;
    }

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 0;
        transition: right 0.4s ease;
        border-left: 1px solid var(--glass-border);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 16px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-link.nav-btn {
        margin-top: 20px;
        text-align: center;
        border-bottom: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 20px 80px;
    }

    .hero-scroll {
        display: none;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .client-box {
        padding: 40px 24px;
    }

    .section {
        padding: 60px 0;
    }

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

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

    .btn {
        width: 100%;
        justify-content: center;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 24px;
    }

    .modal-content {
        padding: 24px;
    }

    .team-contact {
        gap: 8px;
    }

    .contact-btn {
        width: 44px;
        height: 44px;
    }

    .contact-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   COOKIE BANNER (mantener compatibilidad)
   ============================================ */
#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 20px;
    display: none;
}

#cookieBanner.show {
    display: block;
}

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

.cookie-text h3 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cookie-text a {
    color: var(--accent-blue);
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.cookie-btn-accept:hover {
    background: var(--accent-orange);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
}

.cookie-btn-reject:hover {
    border-color: var(--text-muted);
    color: var(--text-light);
}

@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   CHAT WIDGET - IZA
   ============================================ */

.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Botón flotante */
.chat-toggle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-blue) 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
    transition: all 0.3s ease;
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.6);
}

.chat-toggle svg {
    width: 28px;
    height: 28px;
    color: white;
    transition: all 0.3s ease;
}

.chat-toggle .chat-icon-close {
    display: none;
}

.chat-widget.active .chat-toggle .chat-icon-open {
    display: none;
}

.chat-widget.active .chat-toggle .chat-icon-close {
    display: block;
}

/* Pulso animado */
.chat-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--accent-blue);
    animation: chatPulse 2s infinite;
    z-index: -1;
}

@keyframes chatPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.chat-widget.active .chat-pulse {
    display: none;
}

/* Ventana del chat */
.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 550px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: chatSlideUp 0.3s ease;
}

@keyframes chatSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-widget.active .chat-window {
    display: flex;
}

/* Header del chat */
.chat-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-avatar svg {
    width: 26px;
    height: 26px;
    color: white;
}

.chat-header-text h4 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.chat-status {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.chat-status::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: statusPulse 2s infinite;
}

.chat-status.offline::before {
    background: #94a3b8;
    animation: none;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chat-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-close svg {
    width: 18px;
    height: 18px;
    color: white;
}

/* Área de mensajes */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

/* Mensajes */
.chat-message {
    display: flex;
    max-width: 85%;
    animation: messageAppear 0.3s ease;
}

@keyframes messageAppear {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-message.user {
    margin-left: auto;
}

.chat-message-content {
    padding: 14px 18px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.5;
}

.chat-message.assistant .chat-message-content {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--text-light);
    border-bottom-left-radius: 4px;
}

.chat-message.user .chat-message-content {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ea580c 100%);
    color: white;
    border-bottom-right-radius: 4px;
}

/* Indicador de escritura */
.chat-typing {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 14px 18px;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    max-width: 80px;
}

.chat-typing span {
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
    animation: typingDot 1.4s infinite;
}

.chat-typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.chat-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    30% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

/* Input del chat */
.chat-input-container {
    padding: 15px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(30, 41, 59, 0.5);
}

.chat-form {
    display: flex;
    gap: 10px;
}

.chat-input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 25px;
    background: rgba(15, 23, 42, 0.8);
    color: white;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.chat-input:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.chat-input::placeholder {
    color: var(--text-muted);
}

.chat-send {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-blue) 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.chat-send:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.5);
}

.chat-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.chat-send svg {
    width: 20px;
    height: 20px;
    color: white;
}

/* Footer del chat */
.chat-footer {
    padding: 10px 20px 15px;
    background: rgba(30, 41, 59, 0.5);
}

.chat-end-session {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid rgba(249, 115, 22, 0.5);
    color: var(--accent-orange);
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
}

.chat-end-session:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: var(--accent-orange);
}

/* Formulario offline */
.chat-offline-form {
    padding: 15px 20px;
    background: rgba(30, 41, 59, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-offline-form .form-group {
    margin-bottom: 10px;
}

.chat-offline-form input,
.chat-offline-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.8);
    color: white;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.chat-offline-form input:focus,
.chat-offline-form textarea:focus {
    border-color: var(--accent-blue);
}

.chat-offline-form input::placeholder,
.chat-offline-form textarea::placeholder {
    color: var(--text-muted);
}

.chat-offline-form textarea {
    resize: none;
}

.chat-offline-submit {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ea580c 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-offline-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.4);
}

.chat-offline-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.chat-offline-note {
    margin-top: 12px;
    text-align: center;
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.4;
}

/* Modal resumen */
.chat-summary-modal {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 20px;
}

.chat-summary-modal.active {
    display: flex;
}

.chat-summary-content {
    padding: 25px 20px;
    text-align: center;
    width: 100%;
}

.chat-summary-content h3 {
    color: white;
    margin-bottom: 8px;
    font-size: 16px;
}

.chat-summary-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 1.4;
}

.chat-summary-content .form-group {
    margin-bottom: 12px;
}

.chat-summary-content input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    background: rgba(30, 41, 59, 0.8);
    color: white;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.chat-summary-content input:focus {
    border-color: var(--accent-blue);
}

.chat-summary-content input::placeholder {
    color: var(--text-muted);
}

.chat-summary-buttons {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.chat-summary-buttons button {
    flex: 1;
    padding: 10px 8px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.chat-summary-buttons .btn-cancel {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
}

.chat-summary-buttons .btn-cancel:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.chat-summary-buttons .btn-send {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ea580c 100%);
    border: none;
    color: white;
}

.chat-summary-buttons .btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.4);
}

/* Responsive chat */
@media (max-width: 480px) {
    .chat-widget {
        bottom: 20px;
        right: 20px;
    }

    .chat-toggle {
        width: 60px;
        height: 60px;
    }

    .chat-window {
        width: calc(100vw - 40px);
        height: calc(100vh - 150px);
        max-height: 500px;
        right: 0;
        bottom: 75px;
    }

    .chat-header {
        padding: 15px;
    }

    .chat-avatar {
        width: 40px;
        height: 40px;
    }

    .chat-messages {
        padding: 15px;
    }

    .chat-input-container {
        padding: 12px 15px;
    }

    /* Modal responsive móvil */
    .chat-summary-modal {
        padding: 8px;
        align-items: flex-start;
    }

    .chat-summary-content {
        padding: 15px 12px;
    }

    .chat-summary-content h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .chat-summary-content p {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .chat-summary-content input {
        padding: 10px 12px;
        font-size: 14px;
    }

    .chat-summary-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .chat-summary-buttons button {
        padding: 12px;
        font-size: 14px;
    }
}

/* ============================================
   TOAST FLOTANTE (Desktop phone/whatsapp)
   ============================================ */
.device-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.3);
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 90vw;
}

.device-toast.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.device-toast svg {
    color: var(--accent-blue);
    flex-shrink: 0;
}

.device-toast span {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

/* ============================================
   PÁGINAS DE SERVICIOS SEO - MÁLAGA
   ============================================ */

/* Hero Service */
.hero-service {
    min-height: 60vh;
    padding-top: 120px;
}

.hero-service .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}

/* Main Content */
.main-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
}

.main-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-light);
}

.main-content p {
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.main-content strong {
    color: var(--accent-blue);
}

/* Service List */
.service-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

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

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

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

.feature-item {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--accent-blue);
    transform: translateY(-3px);
}

.feature-item h4 {
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* FAQ Items */
.faq-item {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.faq-item h4 {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-dark);
    margin: 0;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.cta-box h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.cta-box .btn {
    margin-bottom: 0.75rem;
}

.info-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
}

.info-box h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.info-box li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-box li::before {
    content: "★";
    color: var(--accent-orange);
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3), rgba(249, 115, 22, 0.1));
}

.cta-final {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-final h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cta-final p {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Full Width */
.btn-full {
    width: 100%;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ============================================
   PÁGINA DE ZONAS - MÁLAGA
   ============================================ */

.zone-section {
    margin-bottom: 3rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
}

.zone-title {
    font-size: 1.75rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent-orange);
    display: inline-block;
}

.zone-description {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.zone-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.zone-service {
    background: rgba(59, 130, 246, 0.2);
    color: var(--accent-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Zones Grid */
.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.zone-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition);
}

.zone-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.zone-card h4 {
    color: var(--accent-orange);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.zone-card p {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.zone-card ul {
    list-style: none;
    padding: 0;
}

.zone-card li {
    padding: 0.4rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-left: 1.25rem;
    position: relative;
}

.zone-card li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
}
