/* ============================================
   DISEÑOSTHONY - CSS PRINCIPAL PARA PRODUCCIÓN
   Versión: 1.0 | Fecha: 2025
   ============================================ */

/* ===== VARIABLES Y RESET ===== */
:root {
    --primary: #0a192f;
    --primary-light: #112240;
    --accent: #5ce1e6;
    --accent-dark: #4acfd4;
    --secondary: #d4af37;
    --light: #e6f1ff;
    --light-gray: #b8c7e3;
    --white: #ffffff;
    --dark: #020c1b;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(2, 12, 27, 0.15);
    --border-radius: 12px;
    --success: #4CAF50;
    --warning: #ff9800;
    --error: #f44336;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 5rem 1.5rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    position: relative;
    color: var(--white);
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--accent);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--light-gray);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: var(--primary);
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(92, 225, 230, 0.2);
}

.btn:hover {
    background-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(92, 225, 230, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-outline:hover {
    background-color: rgba(92, 225, 230, 0.1);
}

/* ===== BANNER DE CONSENTIMIENTO COOKIES ===== */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-light);
    color: var(--light);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.5s ease;
    border-top: 2px solid var(--accent);
}

.cookie-consent-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-text h3 i {
    color: var(--accent);
}

.cookie-text p {
    color: var(--light-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-btn-accept {
    background-color: var(--accent);
    color: var(--primary);
    border: none;
}

.cookie-btn-accept:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
}

.cookie-btn-settings {
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.cookie-btn-settings:hover {
    background-color: rgba(92, 225, 230, 0.1);
}

.cookie-btn-reject {
    background-color: transparent;
    color: var(--light-gray);
    border: 2px solid var(--light-gray);
}

.cookie-btn-reject:hover {
    background-color: rgba(184, 199, 227, 0.1);
}

/* ===== MODAL DE CONFIGURACIÓN DE COOKIES ===== */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(5px);
}

.cookie-modal.active {
    display: flex;
}

.cookie-modal-content {
    background: var(--primary);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--accent);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(92, 225, 230, 0.2);
}

.cookie-modal-header h2 {
    color: var(--white);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cookie-modal-header h2 i {
    color: var(--accent);
}

.close-modal {
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: var(--accent);
    background-color: rgba(92, 225, 230, 0.1);
}

.cookie-options {
    margin-bottom: 2.5rem;
}

.cookie-option {
    background: var(--primary-light);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(92, 225, 230, 0.1);
    transition: var(--transition);
}

.cookie-option:hover {
    border-color: var(--accent);
}

.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-option-title {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(92, 225, 230, 0.2);
    transition: .4s;
    border-radius: 34px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: var(--light);
    transition: .4s;
    border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
    background-color: var(--accent);
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(30px);
}

.cookie-option-description {
    color: var(--light-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-option-description a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-modal-buttons {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-modal-btn {
    flex: 1;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-modal-btn-save {
    background-color: var(--accent);
    color: var(--primary);
    border: none;
}

.cookie-modal-btn-save:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
}

.cookie-modal-btn-accept-all {
    background-color: var(--success);
    color: white;
    border: none;
}

.cookie-modal-btn-accept-all:hover {
    background-color: #3d8b40;
    transform: translateY(-2px);
}

.cookie-modal-btn-reject-all {
    background-color: transparent;
    color: var(--light-gray);
    border: 2px solid var(--light-gray);
}

.cookie-modal-btn-reject-all:hover {
    background-color: rgba(184, 199, 227, 0.1);
}

/* ===== NOTIFICACIÓN DE CONSENTIMIENTO GUARDADO ===== */
.cookie-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--success);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    z-index: 10001;
    display: none;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.5s ease;
}

.cookie-notification.active {
    display: flex;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.cookie-notification i {
    font-size: 1.5rem;
}

/* ===== HEADER Y NAVEGACIÓN ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(2, 12, 27, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1001;
}

.logo span {
    color: var(--accent);
}

.logo i {
    color: var(--accent);
    font-size: 1.5rem;
}

/* Navegación Desktop */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--light);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

.header-btn {
    background-color: var(--accent);
    color: var(--primary);
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    white-space: nowrap;
    font-size: 0.95rem;
}

.header-btn:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
}

/* Menú Hamburguesa (móviles) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--accent);
}

/* Navegación Móvil */
.nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(10, 25, 47, 0.98);
    backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nav-mobile.active {
    display: flex;
    opacity: 1;
}

.nav-mobile-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.nav-mobile-links a {
    color: var(--light);
    font-size: 1.8rem;
    font-weight: 500;
    transition: var(--transition);
    text-align: center;
}

.nav-mobile-links a:hover,
.nav-mobile-links a.active {
    color: var(--accent);
    transform: translateY(-3px);
}

.close-menu {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--light);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-menu:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(92, 225, 230, 0.1) 0%, transparent 70%);
    top: 10%;
    right: 10%;
    border-radius: 50%;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero h1 span {
    color: var(--accent);
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    bottom: -5px;
    left: 0;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-subtitle i {
    color: var(--secondary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 1rem 2.2rem;
    font-size: 1.1rem;
}

.hero-btn-outline {
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.hero-btn-outline:hover {
    background-color: rgba(92, 225, 230, 0.1);
}

/* ===== SERVICIOS SECTION ===== */
.servicios {
    background-color: var(--primary-light);
    position: relative;
}

.servicios-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--light-gray);
    font-size: 1.1rem;
}

.servicios-intro strong {
    color: var(--secondary);
    font-weight: 600;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.servicio-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(92, 225, 230, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.servicio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(92, 225, 230, 0.05) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.servicio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: rgba(92, 225, 230, 0.3);
}

.servicio-card:hover::before {
    opacity: 1;
}

.servicio-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition);
}

.servicio-card:hover .servicio-icon {
    transform: scale(1.1) rotate(5deg);
}

.servicio-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.servicio-card p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.servicio-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.servicio-link i {
    transition: transform 0.3s ease;
}

.servicio-link:hover i {
    transform: translateX(5px);
}

/* ===== ZONAS SERVICIO VENEZUELA ===== */
.zonas-servicio {
    background-color: var(--primary);
    padding: 4rem 1.5rem;
    text-align: center;
}

.zonas-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.zonas-subtitle {
    color: var(--light-gray);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
}

.zonas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.zona-item {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.zona-item:hover {
    background-color: rgba(212, 175, 55, 0.05);
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.zona-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.zona-item h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.zona-item p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* ===== PROCESO SECTION ===== */
.proceso {
    background-color: var(--primary);
}

.proceso-timeline {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0;
}

.proceso-timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 100%;
    background-color: rgba(92, 225, 230, 0.2);
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

.proceso-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.proceso-item:nth-child(odd) {
    flex-direction: row;
}

.proceso-item:nth-child(even) {
    flex-direction: row-reverse;
}

.proceso-content {
    background-color: var(--primary-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    width: 45%;
    box-shadow: var(--shadow);
    border: 1px solid rgba(92, 225, 230, 0.1);
    transition: var(--transition);
}

.proceso-content:hover {
    transform: translateY(-5px);
    border-color: rgba(92, 225, 230, 0.3);
}

.proceso-number {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 8px var(--primary);
}

.proceso-content h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.proceso-content p {
    color: var(--light-gray);
    font-size: 1rem;
}

/* ===== PORTAFOLIO SECTION ===== */
.portafolio {
    background-color: var(--primary-light);
}

.portafolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    background-color: transparent;
    color: var(--light);
    border: 1px solid rgba(92, 225, 230, 0.3);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

.portafolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.portafolio-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    height: 280px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.portafolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portafolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 25, 47, 0.9) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.portafolio-item:hover .portafolio-overlay {
    opacity: 1;
}

.portafolio-item:hover .portafolio-img {
    transform: scale(1.05);
}

.portafolio-info h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.portafolio-info p {
    color: var(--light-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.portafolio-links {
    display: flex;
    gap: 1rem;
}

.portafolio-link {
    width: 40px;
    height: 40px;
    background-color: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.portafolio-link:hover {
    background-color: var(--white);
    transform: translateY(-3px);
}

/* ===== TESTIMONIOS SECTION ===== */
.testimonios {
    background-color: var(--primary);
}

.testimonios-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonios-container {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonio-card {
    min-width: 100%;
    background-color: var(--primary-light);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(92, 225, 230, 0.1);
    text-align: center;
}

.testimonio-text {
    font-size: 1.1rem;
    color: var(--light);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
    position: relative;
    padding: 0 1rem;
}

.testimonio-text::before,
.testimonio-text::after {
    content: '"';
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.5;
    position: absolute;
}

.testimonio-text::before {
    top: -1rem;
    left: -0.5rem;
}

.testimonio-text::after {
    bottom: -2.5rem;
    right: -0.5rem;
}

.testimonio-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
}

.author-info h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.author-info p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.testimonio-rating {
    color: var(--secondary);
    margin: 1rem 0;
    font-size: 1.2rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    background-color: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background-color: var(--accent);
    color: var(--primary);
}

.slider-dots {
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(92, 225, 230, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--accent);
    transform: scale(1.2);
}

/* ===== CONTACTO SECTION ===== */
.contacto {
    background-color: var(--primary-light);
}

.contacto-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: start;
}

.contacto-info h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contacto-info p {
    color: var(--light-gray);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contacto-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contacto-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contacto-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(92, 225, 230, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
}

.contacto-text h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contacto-text p {
    color: var(--light-gray);
    margin: 0;
    font-size: 0.95rem;
}

.contacto-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(92, 225, 230, 0.1);
}

.social-link:hover {
    background-color: var(--accent);
    color: var(--primary);
    transform: translateY(-5px);
}

.contacto-form {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    border: 1px solid rgba(92, 225, 230, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: var(--light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* ===== FORMULARIO INPUTS ===== */
.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(92, 225, 230, 0.2);
    border-radius: 8px;
    color: var(--light);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

/* Estilos específicos para select */
.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235ce1e6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 3rem;
    cursor: pointer;
}

/* Estilo para opciones del select */
.form-select option {
    background-color: var(--primary);
    color: var(--light);
    padding: 10px;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent);
    background-color: rgba(92, 225, 230, 0.05);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    position: relative;
}

/* ===== GOOGLE reCAPTCHA ===== */
.g-recaptcha {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}

.recaptcha-notice {
    font-size: 0.85rem;
    color: var(--light-gray);
    text-align: center;
    margin-top: 0.5rem;
}

.recaptcha-notice a {
    color: var(--accent);
    text-decoration: underline;
}

/* Checkbox personalizado */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    cursor: pointer;
}

.checkbox-group label {
    color: var(--light-gray);
    font-size: 0.95rem;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--accent);
    text-decoration: underline;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark);
    padding: 3rem 1.5rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-logo span {
    color: var(--accent);
}

.footer-tagline {
    color: var(--light-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-tagline strong {
    color: var(--secondary);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--light-gray);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.footer-copy {
    color: var(--light-gray);
    font-size: 0.9rem;
    border-top: 1px solid rgba(92, 225, 230, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background-color: rgba(10, 25, 47, 0.8);
    padding: 1rem 1.5rem;
    margin-top: 80px;
    font-size: 0.9rem;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb a {
    color: var(--light-gray);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span {
    color: var(--accent);
    margin: 0 0.5rem;
}

.breadcrumb .current {
    color: var(--white);
    font-weight: 500;
}

/* ===== GOOGLE ADSENSE AD STYLES ===== */
.adsbygoogle {
    display: block;
    margin: 2rem auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    overflow: hidden;
    max-width: 1200px;
}

/* ===== ANIMACIONES DE APARICIÓN ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== EFECTOS ESPECIALES ===== */
.glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(92, 225, 230, 0.2);
    }
    to {
        box-shadow: 0 0 30px rgba(92, 225, 230, 0.4);
    }
}

/* ===== LOADING SPINNER ===== */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(92, 225, 230, 0.3);
    border-radius: 50%;
    border-top-color: var(--accent);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== TOOLTIPS ===== */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: var(--primary-light);
    color: var(--light);
    text-align: center;
    border-radius: 6px;
    padding: 0.5rem;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 0.9rem;
    border: 1px solid var(--accent);
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* ===== ESTILOS PARA MENSAJES DE ERROR ===== */
.error-message {
    color: var(--error);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
}

.success-message {
    color: var(--success);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
}

/* ===== ESTILOS PARA BADGES ===== */
.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: var(--accent);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* ===== ESTILOS PARA TARJETAS DE PRECIOS ===== */
.price-card {
    background: var(--primary-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.price-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
}

.price-card.featured {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-color: var(--accent);
    position: relative;
    overflow: hidden;
}

.price-card.featured::before {
    content: 'RECOMENDADO';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent);
    color: var(--primary);
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

/* ===== ESTILOS PARA ACORDEÓN ===== */
.accordion-item {
    background: var(--primary-light);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    background: rgba(92, 225, 230, 0.1);
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* ===== ESTILOS PARA MODAL ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--primary);
    border-radius: var(--border-radius);
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== ESTILOS PARA PAGINACIÓN ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 50%;
    color: var(--light);
    cursor: pointer;
    transition: var(--transition);
}

.pagination-item.active,
.pagination-item:hover {
    background: var(--accent);
    color: var(--primary);
}

/* ===== ESTILOS PARA BARRAS DE PROGRESO ===== */
.progress-bar {
    height: 6px;
    background: rgba(92, 225, 230, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress {
    height: 100%;
    background: var(--accent);
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* ===== ESTILOS PARA TABLAS ===== */
.table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.table th,
.table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(92, 225, 230, 0.1);
}

.table th {
    background: var(--primary-light);
    color: var(--accent);
    font-weight: 600;
}

.table tr:hover {
    background: rgba(92, 225, 230, 0.05);
}

/* ===== ESTILOS PARA LISTAS CON ÍCONOS ===== */
.icon-list {
    list-style: none;
}

.icon-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.icon-list i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* ===== ESTILOS PARA AVATARES ===== */
.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.avatar-lg {
    width: 80px;
    height: 80px;
}

.avatar-sm {
    width: 30px;
    height: 30px;
}

/* ===== ESTILOS PARA BLOQUES DE CÓDIGO ===== */
.code-block {
    background: var(--primary-light);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1rem 0;
    overflow-x: auto;
    border-left: 4px solid var(--accent);
}

.code-block code {
    font-family: 'Courier New', monospace;
    color: var(--accent);
}

/* ===== ESTILOS PARA CARTELES ===== */
.alert {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
    border-left: 4px solid;
}

.alert-success {
    background: rgba(76, 175, 80, 0.1);
    border-color: var(--success);
    color: var(--success);
}

.alert-warning {
    background: rgba(255, 152, 0, 0.1);
    border-color: var(--warning);
    color: var(--warning);
}

.alert-error {
    background: rgba(244, 67, 54, 0.1);
    border-color: var(--error);
    color: var(--error);
}

.alert-info {
    background: rgba(92, 225, 230, 0.1);
    border-color: var(--accent);
    color: var(--accent);
}

/* ===== ESTILOS PARA BOTONES SOCIALES ESPECÍFICOS ===== */
.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.btn-facebook {
    background: #1877F2;
    color: white;
}

.btn-facebook:hover {
    background: #0D5FD8;
}

.btn-instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
}

.btn-twitter {
    background: #1DA1F2;
    color: white;
}

.btn-twitter:hover {
    background: #0D8BD9;
}

/* ===== ESTILOS PARA GRADIENTES ESPECIALES ===== */
.gradient-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.gradient-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.gradient-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, #b8941f 100%);
}

/* ===== UTILIDADES ===== */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-accent {
    color: var(--accent);
}

.text-secondary {
    color: var(--secondary);
}

.text-light {
    color: var(--light);
}

.text-white {
    color: var(--white);
}

.bg-primary {
    background-color: var(--primary);
}

.bg-primary-light {
    background-color: var(--primary-light);
}

.bg-accent {
    background-color: var(--accent);
}

.bg-dark {
    background-color: var(--dark);
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 3rem; }

/* ===== ESTILOS PARA IMPRESIÓN ===== */
@media print {
    .no-print {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    .btn {
        display: none;
    }
}