﻿/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6E00B3;
    --primary-dark: #5A0099;
    --primary-light: #8E00C0;
    --secondary: #FF6B9D;
    --accent: #FFB347;
    --text-primary: #1a1a2e;
    --text-secondary: #555555;
    --text-light: #888888;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #f1f1f1;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 999px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    font-size: 16px;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    outline: none;
    line-height: 1;
}

.btn-purple {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    box-shadow: 0 4px 15px rgba(110, 0, 179, 0.35);
}

.btn-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(110, 0, 179, 0.45);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-secondary {
    background: var(--secondary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.35);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.45);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 17px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
}

/* === Header / Navigation === */
.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid var(--border-color);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-text .love {
    color: var(--secondary);
}

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

.nav {
    display: flex;
    gap: 28px;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    padding: 8px 4px;
    position: relative;
    transition: color 0.3s ease;
}

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

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

.nav-link.active::after,
.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 3px;
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
}

.nav-cta:hover {
    box-shadow: 0 4px 15px rgba(110, 0, 179, 0.35);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-primary);
}

/* === Hero === */
.hero {
    position: relative;
    overflow: hidden;
    padding: 60px 0 80px;
    min-height: 720px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f0ff 0%, #e5e0f0 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(110, 0, 179, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 30%, rgba(255, 107, 157, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-text {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(110, 0, 179, 0.35);
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.delivery-badges {
    display: flex;
    gap: 24px;
    margin-top: 24px;
}

.delivery-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.delivery-badge .badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.delivery-badge .badge-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.delivery-badge .badge-text strong {
    display: block;
    font-size: 15px;
    color: var(--text-primary);
}

.hero-image {
    justify-self: end;
    max-width: 480px;
}

.hero-phone {
    width: 100%;
    max-width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f6ff 100%);
    border-radius: 40px;
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(110, 0, 179, 0.1);
}

.hero-phone::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 20px;
    background: #ccc;
    border-radius: 10px;
}

.hero-phone-screen {
    position: absolute;
    top: 60px;
    left: 20px;
    right: 20px;
    bottom: 60px;
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 24px;
}

/* === Section Titles === */
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 44px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-title .gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 56px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background-color: var(--bg-light);
}

/* === Offers === */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.offer-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--border-color);
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.offer-image {
    height: 200px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ede6f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.offer-content {
    padding: 28px;
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), #ff8fa0);
    color: white;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
}

.offer-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.offer-desc {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.offer-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.offer-price .price-unit {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

.offer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.offer-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* === Service Cards === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(110, 0, 179, 0.1) 0%, rgba(255, 107, 157, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary);
    font-size: 32px;
}

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

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 15px;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-features li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 14px;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.2l4.8-3.2 4.8 3.2v6H4v-6zm6-12.2l8 5v6l-8 4-8-4V9z'/></svg>");
    background-size: 12px 12px;
    background-position: center;
    background-repeat: no-repeat;
}

/* === Plan Cards === */
.plans-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 12px 0 4px;
    scrollbar-width: none;
}

.plans-container::-webkit-scrollbar {
    display: none;
}

.plan-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    min-width: 280px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
}

.plan-card.popular {
    border-color: var(--primary);
    transform: scale(1.03);
}

.plan-popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(110, 0, 179, 0.35);
}

.plan-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.plan-card.popular:hover {
    transform: scale(1.03);
}

.plan-header {
    text-align: center;
    margin-bottom: 32px;
}

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

.plan-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), #ff8fa0);
    color: white;
    padding: 3px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-price {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.plan-price .price-unit {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    display: flex;
    justify-content: space-between;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features .feature-value {
    font-weight: 700;
    color: var(--text-primary);
}

.plan-features .feature-label {
    color: var(--text-secondary);
}

.plan-cta {
    text-align: center;
}

/* === Catalog === */
.catalog-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.catalog-filter {
    padding: 10px 24px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.catalog-filter:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.catalog-filter.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-color: transparent;
}

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

.catalog-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    text-align: center;
    padding: 28px 20px;
}

.catalog-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.catalog-item-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.catalog-item-image img {
    max-height: 160px;
    max-width: 100%;
    object-fit: contain;
}

.catalog-item-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.catalog-item-desc {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.catalog-item-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.catalog-item-price .price-unit {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* === Benefits === */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.benefit-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 28px;
}

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

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

/* === Coverage Map === */
.coverage-map {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    margin-top: 40px;
    border: 1px solid var(--border-color);
}

.coverage-map h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 32px;
}

.coverage-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin: 32px 0;
}

.coverage-stat {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

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

.coverage-stat .stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* === Contact === */
.contacto-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contacto-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.contacto-info .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
}

.contact-item .item-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contacto-form {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.form-contacto .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-contacto .form-group {
    margin-bottom: 24px;
}

.form-contacto .form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 8px;
}

.form-contacto .form-group.checkbox label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.form-contacto textarea {
    min-height: 140px;
    resize: vertical;
}

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    transform: translateY(-3px);
}

/* === Team === */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 32px;
}

.team-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.team-card-image {
    height: 200px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8e0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.team-card-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.team-card-content {
    padding: 28px;
}

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

.card-title {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === Value Proposition === */
.propuesta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.propuesta-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.propuesta-text p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.propuesta-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.propuesta-feature {
    background: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.propuesta-feature h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.propuesta-feature p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.mision-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.mision,
.vision {
    background: var(--bg-white);
    padding: 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.mision h4,
.vision h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.mision p,
.vision p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.valores ul {
    margin-top: 12px;
}

.valores ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 14px;
}

.valores ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.2l4.8-3.2 4.8 3.2v6H4v-6zm6-12.2l8 5v6l-8 4-8-4V9z'/></svg>");
    background-size: 10px 10px;
    background-position: center;
    background-repeat: no-repeat;
}

/* === News === */
.actualidad-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.noticia-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.noticia-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.noticia-image {
    height: 180px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8e0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.noticia-content {
    padding: 28px;
}

.noticia-date {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 12px;
}

.noticia-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.noticia-link {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.noticia-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 14px;
}

/* === Footer === */
.footer {
    background: var(--text-primary);
    color: var(--bg-white);
    padding: 80px 0 40px;
    font-size: 15px;
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-desc {
    color: #b3b3b3;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-column h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.footer-column a {
    display: block;
    color: #b3b3b3;
    text-decoration: none;
    margin-bottom: 14px;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-column a:hover {
    color: var(--bg-white);
    padding-left: 6px;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2a2a2a;
    border-radius: 50%;
    color: #b3b3b3;
    transition: all 0.3s ease;
    font-size: 18px;
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #777;
    font-size: 13px;
}

.legal-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.legal-links a {
    color: #777;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--bg-white);
}

/* === Responsive === */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        justify-self: center;
        max-width: 400px;
    }

    .section-title {
        font-size: 38px;
    }

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

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

    .delivery-badges {
        flex-direction: column;
        gap: 12px;
    }

    .plan-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0 60px;
        min-height: auto;
    }

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

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .section-title {
        font-size: 32px;
    }

    .services-grid,
    .offers-grid,
    .team-grid,
    .actualidad-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

    .plans-container {
        overflow-x: auto;
    }
}

/* === Mobile Menu === */
@media (max-width: 768px) {
    .mobile-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-white);
        z-index: 999;
        padding: 70px 20px 40px;
        overflow-y: auto;
        transition: left 0.3s ease;
        border-left: 1px solid var(--border-color);
    }

    .mobile-nav.active {
        left: 0;
    }

    .mobile-nav .nav {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .mobile-nav .nav-link {
        font-size: 18px;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-nav .nav-cta {
        text-align: center;
        margin-top: 24px;
    }

    .mobile-menu-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 32px;
        cursor: pointer;
        color: var(--text-primary);
    }
}
