/* ======================== VARIABLES GLOBALES ======================== */
:root {
    /* Colores principales - Sistema unificado */
    --red-dark: #450a0a;
    --red-mid: #7f1d1d;
    --orange-dark: #9a3412;
    --orange: #ea580c;
    --orange-light: #fb923c;
    --light-text: #ffffff;
    
    /* Colores para nosotros.php */
    --primary-color: #d32f2f;
    --primary-dark: #b71c1c;
    --primary-light: #ff6659;
    --secondary-color: #2c3e50;
    --accent-color: #ff6b6b;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    
    /* Efectos visuales */
    --glass-bg: rgba(20, 20, 20, 0.85);
    --glass-bg-scrolled: rgba(15, 15, 15, 0.95);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
    --border-radius: 15px;
    --transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ======================== RESET Y ESTILOS BASE ======================== */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0a0a0f;
    color: #e2e8f0;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px; /* Para header fixed */
}

/* ======================== HEADER MODERNO 2025 ======================== */
.main-header {
    position: fixed;
    top: 0; 
    left: 0; 
    right: 0;
    z-index: 9999;
    padding: 1.2rem 0;
    transition: var(--transition);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    background: rgba(15, 15, 25, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.main-header.scrolled {
    padding: 0.8rem 0;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.03) inset;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.navbar-brand img {
    height: 48px;
    transition: var(--transition);
}

.brand-text {
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    transition: var(--transition);
}

.brand-text span {
    background: linear-gradient(135deg, #FF0000, #FF7800, #CF0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.navbar-brand:hover img { 
    transform: scale(1.1) rotate(3deg);
}

.navbar-brand:hover .brand-text {
    transform: translateX(5px);
    text-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

.navbar-nav { 
    gap: 1.8rem; 
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    padding: 0.6rem 0 !important;
    transition: var(--transition);
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #ffa726, #ffeb3b);
    border-radius: 1px;
    transition: var(--transition);
    transform: translateX(-50%);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
}

.nav-link:hover::before,
.nav-link.active::before { 
    width: 100%; 
}

.nav-link:hover,
.nav-link.active { 
    color: white !important; 
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(255,255,255,0.5);
}

/* Dropdown moderno */
.dropdown-menu {
    background: rgba(30,30,30,0.98);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    margin-top: 15px;
    padding: 1rem 0;
    min-width: 240px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    animation: dropdownFade 0.3s ease;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
    color: #ddd !important;
    padding: 0.8rem 1.5rem;
    transition: var(--transition);
    font-weight: 500;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(234,88,12,0.1), transparent);
    color: var(--orange-light) !important;
    padding-left: 2rem;
    transform: translateX(8px);
}

.social-icons a {
    width: 44px; 
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    transition: var(--transition);
    margin-left: 10px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons a:hover {
    background: linear-gradient(135deg, #ff6b6b, #ffa726);
    color: white;
    transform: translateY(-4px) scale(1.15);
    box-shadow: 
        0 10px 25px rgba(255, 107, 107, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    border-color: transparent;
}

/* ======================== HERO SLIDESHOW MEJORADO ======================== */
.hero-section, .carousel-item {
    height: 100vh;
    min-height: 780px;
    position: relative;
    margin-top: 0;
}

.carousel-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: center/cover no-repeat;
    z-index: 1;
    border-radius: 0;
}

.carousel-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(0,0,0,0.85) 0%, 
        rgba(211,47,47,0.3) 50%, 
        rgba(0,0,0,0.9) 100%);
    z-index: 2;
    border-radius: 0;
}

.carousel-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding-top: 25vh;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-content h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.carousel-content h1 {
    font-size: clamp(3.2rem, 7vw, 5.5rem);
    font-weight: 900;
    margin: 0.5rem 0 1.5rem;
    text-shadow: 0 6px 20px rgba(0,0,0,0.2);
    line-height: 1.1;
    color: #ffffff;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 90%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.carousel-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-hero {
    padding: 16px 42px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    min-width: 200px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary-hero {
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
    color: white;
    box-shadow: 0 8px 30px rgba(234,88,12,0.4);
}

.btn-primary-hero:hover {
    background: transparent;
    border-color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(234,88,12,0.5);
    color: white;
}

.btn-outline-hero {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline-hero:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255,255,255,0.2);
}

/* Carousel Controls */
.carousel-indicators {
    bottom: 40px;
    gap: 10px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    opacity: 0.7;
    transition: var(--transition);
}

.carousel-indicators button.active {
    background: var(--orange);
    border-color: var(--orange);
    opacity: 1;
    transform: scale(1.3);
}

/* ======================== HERO NOSOTROS ======================== */
.hero-nosotros {
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(211,47,47,0.4) 50%, rgba(0,0,0,0.9) 100%),
                url('https://cambiosmaat.com/wp-content/uploads/2024/12/nosotros.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding: 120px 0 80px;
}

.hero-nosotros::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(211,47,47,0.2) 100%);
    z-index: 1;
}

.hero-nosotros .container {
    position: relative;
    z-index: 2;
}

/* Breadcrumb mejorado */
.breadcrumb-nosotros {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
}

.breadcrumb-nosotros .breadcrumb-item a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.breadcrumb-nosotros .breadcrumb-item a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.breadcrumb-nosotros .breadcrumb-item.active {
    color: var(--primary-light);
    font-weight: 600;
}

.breadcrumb-nosotros .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.7);
    content: "›";
    font-size: 1.2rem;
    padding: 0 10px;
}

/* Títulos H1 mejorados para nosotros */
.hero-nosotros h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-nosotros .lead {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* ======================== SECCIONES GENERALES ======================== */
.services-section, .about-section, .video-section { 
    padding: 100px 0; 
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: white;
}


.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-dark), var(--orange));
    display: block;
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    display: block;
    text-align: center;
    color: var(--orange-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* ======================== SECCIÓN CEO ======================== */
.ceo-section {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
}

.ceo-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.4s ease;
    border: none;
}

.ceo-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.ceo-image {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

.ceo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ceo-card:hover .ceo-image img {
    transform: scale(1.05);
}

.ceo-content {
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ceo-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

/* Títulos de sección MEJORADOS para nosotros */
.ceo-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    text-align: left;
}

.ceo-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 2px;
    margin: 0;
}

.ceo-section .section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
    text-align: left;
}

.ceo-content .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.ceo-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Rating section */
.rating-section {
    background: rgba(255,107,107,0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
    border-left: 4px solid var(--accent-color);
}

.rating-stars {
    color: #ffc107;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.rating-stars span {
    color: var(--text-dark);
    font-weight: 700;
}

/* Author info */
.author-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0,0,0,0.1);
}

.author-info h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.author-info .text-primary {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.ceo-signature {
    max-width: 180px;
    opacity: 0.9;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

/* ======================== SERVICIOS ======================== */
.service-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: var(--transition);
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    border-color: var(--orange);
}

.service-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(234,88,12,0.4);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: var(--orange-light);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    color: white;
    gap: 12px;
}

/* Servicios Nosotros */
.services-nosotros {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
}

.services-nosotros .section-title {
    text-align: center;
    color: var(--text-dark);
}

.services-nosotros .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.services-nosotros .lead {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.service-icon-box {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-icon-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-icon-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.service-icon-box:hover::before {
    transform: scaleX(1);
}

.service-icon-box .service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.2rem;
    transition: all 0.3s ease;
}

.service-icon-box:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon-box h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
}

.service-icon-box p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ======================== ABOUT SECTION ======================== */
.about-section {
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    transition: var(--transition);
}

.about-image:hover {
    transform: translateY(-10px) scale(1.02);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    padding-left: 2rem;
}

.about-text {
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-text.lead {
    font-size: 1.2rem;
    font-weight: 500;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.about-features li {
    padding: 0.8rem 0;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.about-features i {
    color: var(--orange);
    font-size: 1.1rem;
}

/* ======================== VIDEO SECTION ======================== */
.video-section {
    background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.95)),
                url('https://cambiosmaat.com/wp-content/uploads/2020/11/PAYPAL21.png') center/cover fixed;
    position: relative;
}

.video-play-btn {
    width: 90px; height: 90px;
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    cursor: pointer;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 15px 40px rgba(234,88,12,0.5);
    transition: var(--transition);
    animation: pulse 2s infinite;
    text-decoration: none;
}

.video-play-btn:hover { 
    transform: scale(1.15); 
    box-shadow: 0 20px 50px rgba(234,88,12,0.7);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(234,88,12,0.7); }
    70% { box-shadow: 0 0 0 20px rgba(234,88,12,0); }
    100% { box-shadow: 0 0 0 0 rgba(234,88,12,0); }
}

/* ======================== STATS SECTION ======================== */
.stats-section {
    background: linear-gradient(135deg, var(--secondary-color), #1a2530);
    color: white;
    padding: 80px 0;
    position: relative;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

/* ======================== FONDO ESPACIAL ANIMADO ======================== */
.space-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(120, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 80%, rgba(120, 219, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a14 0%, #1a1a2e 50%, #0f0f1a 100%);
}

/* Estrellas grandes */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.8) 50%, transparent 100%),
        radial-gradient(2px 2px at 40% 70%, rgba(255,255,255,0.6) 50%, transparent 100%),
        radial-gradient(1px 1px at 60% 20%, rgba(255,255,255,0.8) 50%, transparent 100%),
        radial-gradient(1px 1px at 80% 50%, rgba(255,255,255,0.6) 50%, transparent 100%),
        radial-gradient(2px 2px at 10% 80%, rgba(255,255,255,0.8) 50%, transparent 100%),
        radial-gradient(1px 1px at 90% 10%, rgba(255,255,255,0.6) 50%, transparent 100%),
        radial-gradient(2px 2px at 70% 40%, rgba(255,255,255,0.8) 50%, transparent 100%);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: starsMove 100s linear infinite;
}

/* Estrellas pequeñas */
.stars-small {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 15% 25%, rgba(255,255,255,0.4) 50%, transparent 100%),
        radial-gradient(1px 1px at 35% 65%, rgba(255,255,255,0.3) 50%, transparent 100%),
        radial-gradient(0.5px 0.5px at 55% 15%, rgba(255,255,255,0.4) 50%, transparent 100%),
        radial-gradient(0.5px 0.5px at 75% 45%, rgba(255,255,255,0.3) 50%, transparent 100%),
        radial-gradient(1px 1px at 5% 75%, rgba(255,255,255,0.4) 50%, transparent 100%),
        radial-gradient(0.5px 0.5px at 85% 5%, rgba(255,255,255,0.3) 50%, transparent 100%),
        radial-gradient(1px 1px at 65% 35%, rgba(255,255,255,0.4) 50%, transparent 100%);
    background-repeat: repeat;
    background-size: 300px 300px;
    animation: starsMove 150s linear infinite reverse;
}

/* Nebulosa animada */
.nebula {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(120, 119, 198, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 119, 198, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
    animation: nebulaPulse 20s ease-in-out infinite;
    opacity: 0.6;
}

/* Ondas cósmicas */
.cosmic-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, rgba(120, 119, 198, 0.1) 0%, transparent 70%);
    animation: cosmicWaves 25s ease-in-out infinite;
}

/* Estrellas fugaces */
.shooting-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shooting-stars::before,
.shooting-stars::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 
        0 0 10px 2px rgba(255, 255, 255, 0.8),
        0 0 20px 4px rgba(120, 219, 255, 0.6);
    animation: shootingStar 8s linear infinite;
}

.shooting-stars::after {
    animation-delay: 4s;
    top: 30%;
    left: 80%;
}

/* Partículas flotantes */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particles::before,
.particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: floatParticle 15s ease-in-out infinite;
}

.particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particles::after {
    top: 60%;
    left: 90%;
    animation-delay: 7.5s;
}

/* ======================== ANIMACIONES ESPACIALES ======================== */
@keyframes starsMove {
    from { transform: translateX(0) translateY(0); }
    to { transform: translateX(-200px) translateY(-200px); }
}

@keyframes nebulaPulse {
    0%, 100% { 
        opacity: 0.4;
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 0.7;
        transform: scale(1.1) rotate(180deg);
    }
}

@keyframes cosmicWaves {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1) translateX(0);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.2) translateX(20px);
    }
}

@keyframes shootingStar {
    0% {
        transform: translateX(0) translateY(0) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    20% {
        transform: translateX(100px) translateY(100px) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translateX(500px) translateY(500px) scale(0);
        opacity: 0;
    }
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px) translateX(20px) scale(1);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-15px) translateX(15px) scale(1.1);
        opacity: 0.5;
    }
}

/* ======================== FOOTER MODERNO 2026 ======================== */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 0, 0, 0.3);
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.footer-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255, 0, 0, 0.3) 50%, transparent 100%),
        radial-gradient(2px 2px at 40% 70%, rgba(255, 69, 0, 0.2) 50%, transparent 100%),
        radial-gradient(1px 1px at 60% 20%, rgba(220, 20, 60, 0.4) 50%, transparent 100%);
    background-repeat: repeat;
    background-size: 300px 300px;
    animation: particlesFloat 20s linear infinite;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #ff0000 20%, 
        #ff4500 50%, 
        #ff0000 80%, 
        transparent 100%);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
    animation: glowPulse 3s ease-in-out infinite;
}

.footer .container {
    position: relative;
    z-index: 2;
}

/* Secciones del footer */
.footer-section {
    position: relative;
    padding: 20px;
    background: rgba(20, 20, 20, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.footer-section:hover {
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* Títulos */
.footer-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #ff4500);
    border-radius: 2px;
}

.title-icon {
    font-size: 1.2rem;
}

/* Enlaces del footer */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    text-decoration: none;
    padding: 12px 0;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding-left: 15px;
}

.footer-link:hover {
    color: #fff;
    background: rgba(255, 0, 0, 0.1);
    transform: translateX(10px);
}

.link-icon {
    color: #ff0000;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.footer-link:hover .link-icon {
    transform: scale(1.2);
    color: #ff4500;
}

.link-hover {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #ff0000, #ff4500);
    border-radius: 2px;
    transition: height 0.3s ease;
}

.footer-link:hover .link-hover {
    height: 70%;
}

/* Contacto */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    color: #ccc;
}

.contact-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff0000;
    font-size: 0.9rem;
}

.contact-link, .contact-text {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* Redes Sociales */
.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 2rem;
}

.social-link {
    position: relative;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    color: #fff;
}

.social-link.facebook:hover {
    background: linear-gradient(135deg, #1877f2, #0d5cb6);
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.4);
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #e4405f, #c13584);
    box-shadow: 0 10px 25px rgba(228, 64, 95, 0.4);
}

.social-link.whatsapp:hover {
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.social-tooltip {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.social-link:hover .social-tooltip {
    opacity: 1;
    bottom: -35px;
}

/* Newsletter */
.newsletter {
    margin-top: 1.5rem;
}

.newsletter-text {
    color: #ccc;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.newsletter-input {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-field {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 15px;
    color: #fff;
    font-size: 0.9rem;
}

.newsletter-field::placeholder {
    color: #666;
}

.newsletter-field:focus {
    outline: none;
}

.newsletter-btn {
    background: linear-gradient(135deg, #ff0000, #ff4500);
    border: none;
    padding: 12px 15px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #ff4500, #ff0000);
    transform: scale(1.05);
}

/* Divisor */
.footer-divider {
    position: relative;
    margin: 3rem 0;
}

.divider-line {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 0, 0, 0.3) 50%, 
        transparent 100%);
}

.divider-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #ff0000 50%, 
        transparent 100%);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    animation: glowMove 4s ease-in-out infinite;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-copyright {
    color: #999;
}

.copyright-text {
    margin-bottom: 0.5rem;
}

.copyright-link {
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.copyright-link:hover {
    color: #ff4500;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.copyright-year {
    color: #fff;
}

.footer-badges {
    display: flex;
    gap: 15px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 20px;
    color: #ccc;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(255, 0, 0, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.badge i {
    color: #ff0000;
}

/* ======================== ANIMACIONES GENERALES ======================== */
.animate-fadeInUp {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-fadeInUp.animated {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes particlesFloat {
    from { transform: translateY(0) translateX(0); }
    to { transform: translateY(-100px) translateX(50px); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes glowMove {
    0%, 100% { left: 20%; }
    50% { left: 80%; }
}

/* ======================== RESPONSIVE DESIGN ======================== */
@media (max-width: 1200px) {
    .hero-nosotros h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .ceo-section .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .navbar-nav { 
        gap: 1rem; 
        text-align: center; 
        padding: 1rem 0;
    }
    
    .hero-section, .carousel-item { 
        min-height: 700px; 
    }
    
    .carousel-content { 
        padding-top: 20vh; 
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-nosotros {
        min-height: 70vh;
        padding: 100px 0 60px;
        background-attachment: scroll;
    }
    
    .hero-nosotros h1 {
        font-size: 2.5rem;
    }
    
    .ceo-image {
        min-height: 400px;
    }
    
    .ceo-content {
        padding: 2.5rem 2rem;
    }
    
    .service-icon-box {
        padding: 2rem 1.5rem;
    }
    
    .space-background {
        backdrop-filter: blur(15px);
    }
    
    .brand-text {
        font-size: 1.3rem;
    } 
    
    .navbar-brand img {
        height: 42px;
    }
}

@media (max-width: 768px) {
    .brand-text {
        font-size: 1.2rem;
    }
    
    .navbar-brand img {
        height: 40px;
    }
    
    .carousel-content h1 { 
        font-size: 2.8rem !important; 
        margin: 0.5rem 0 1rem;
    }
    
    .carousel-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .services-section, .about-section, .video-section {
        padding: 70px 0;
    }
    
    /* ESPACIADO MEJORADO PARA MÓVILES - SLIDESHOW */
    .hero-section, .carousel-item {
        min-height: 650px;
        padding-top: 80px;
    }
    
    .carousel-content {
        padding-top: 22vh;
    }
    
    .carousel-content h3 {
        margin-bottom: 0.8rem;
        font-size: 1.1rem;
    }
    
    .carousel-content h1 {
        margin: 0.3rem 0 1rem;
        font-size: 2.4rem !important;
        line-height: 1.2;
    }
    
    .carousel-content p {
        margin-bottom: 1.5rem;
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-buttons {
        margin-top: 1.5rem;
        gap: 1rem;
    }
    
    .hero-nosotros {
        min-height: 60vh;
        padding: 80px 0 40px;
    }
    
    .hero-nosotros h1 {
        font-size: 2.2rem;
    }
    
    .hero-nosotros .lead {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .ceo-content {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .space-background {
        animation-duration: 200s;
    }
    
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-section {
        padding: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    body {
        padding-top: 70px;
    }
}

@media (max-width: 576px) {
    .carousel-content {
        padding-top: 20vh;
    }
    
    .carousel-content h1 { 
        font-size: 2.2rem !important; 
    }
    
    .service-card {
        padding: 2rem 1rem;
    }
    
    .footer {
        padding: 60px 0 20px;
    }
    
    /* ESPACIADO EXTRA PARA MÓVILES PEQUEÑOS */
    .hero-section, .carousel-item {
        min-height: 600px;
        padding-top: 70px;
    }
    
    .carousel-content {
        padding-top: 18vh;
    }
    
    .carousel-content h1 {
        font-size: 2rem !important;
        margin: 0.2rem 0 0.8rem;
    }
    
    .carousel-content p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .btn-hero {
        padding: 14px 32px;
        font-size: 0.95rem;
        min-width: 180px;
    }
    
    .hero-nosotros h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .ceo-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .service-icon-box {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    .badge {
        padding: 6px 12px;
        font-size: 0.7rem;
    }
}

/* ======================== HERO SERVICIOS ======================== */
.hero-servicios {
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(211,47,47,0.4) 50%, rgba(0,0,0,0.9) 100%),
                url('https://cambiosmaat.com/wp-content/uploads/2024/12/servicios.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding: 120px 0 80px;
}

.hero-servicios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(211,47,47,0.2) 100%);
    z-index: 1;
}

.hero-servicios .container {
    position: relative;
    z-index: 2;
}

/* Breadcrumb servicios */
.breadcrumb-servicios {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
}

.breadcrumb-servicios .breadcrumb-item a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.breadcrumb-servicios .breadcrumb-item a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.breadcrumb-servicios .breadcrumb-item.active {
    color: var(--primary-light);
    font-weight: 600;
}

.breadcrumb-servicios .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.7);
    content: "›";
    font-size: 1.2rem;
    padding: 0 10px;
}

/* Títulos H1 mejorados para servicios */
.hero-servicios h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-servicios .lead {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* ======================== SERVICIOS DESTACADOS ======================== */
.featured-services {
    padding: 100px 0;
    background: var(--bg-white);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-featured-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.service-featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-featured-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

.service-featured-card:hover::before {
    transform: scaleX(1);
}

.service-featured-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.service-featured-card:hover .service-featured-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-featured-card h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

.service-featured-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-featured-card .service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-featured-card .service-period {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* ======================== PROCESO SERVICIOS ======================== */
.process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: var(--orange);
    opacity: 0.5;
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(234,88,12,0.4);
}

.process-step h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.process-step p {
    color: #ccc;
    line-height: 1.6;
}

/* ======================== TESTIMONIOS SERVICIOS ======================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    margin: 1rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 4rem;
    color: var(--primary-light);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-text {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.testimonial-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ======================== CTA SERVICIOS ======================== */
.cta-services {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color), #1a2530);
    color: white;
    text-align: center;
}

.cta-services h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Responsive para servicios */
@media (max-width: 768px) {
    .hero-servicios h1 {
        font-size: 2.5rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step::after {
        display: none;
    }
    
    .process-steps {
        gap: 3rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
}

/* ======================== TEMA OSCURO SERVICIOS ======================== */
.services-dark-theme {
    background: #0a0a0f;
    color: #e2e8f0;
}

.services-dark-theme .section-title {
    color: #ffffff !important;
}

.services-dark-theme .section-subtitle {
    color: var(--orange-light) !important;
}

.services-dark-theme .lead {
    color: #cccccc !important;
}

/* Hero Section Oscuro */
.hero-servicios-dark {
    background: linear-gradient(135deg, rgba(10,10,15,0.95) 0%, rgba(211,47,47,0.3) 50%, rgba(10,10,15,0.98) 100%),
                url('https://cambiosmaat.com/img/servicios-dark.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding: 120px 0 80px;
}

.hero-servicios-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(10,10,15,0.9) 0%, rgba(211,47,47,0.15) 100%);
    z-index: 1;
}

.hero-servicios-dark .container {
    position: relative;
    z-index: 2;
}

/* Featured Services Oscuro */
.featured-services-dark {
    padding: 100px 0;
    background: #0a0a0f;
}

.service-featured-card-dark {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.service-featured-card-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--orange-dark), var(--orange));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-featured-card-dark:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
    border-color: var(--orange);
}

.service-featured-card-dark:hover::before {
    transform: scaleX(1);
}

.service-featured-card-dark h3 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

.service-featured-card-dark p {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-featured-card-dark .service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--orange-light);
    margin-bottom: 1rem;
}

.service-featured-card-dark .service-period {
    color: #999999;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* Process Section Oscuro */
.process-section-dark {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
}

.process-step-dark h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.process-step-dark p {
    color: #cccccc;
    line-height: 1.6;
}

/* Testimonials Oscuro */
.testimonials-section-dark {
    padding: 100px 0;
    background: #0f0f1a;
}

.testimonial-card-dark {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    margin: 1rem;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}

.testimonial-card-dark::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 4rem;
    color: var(--orange-light);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-text-dark {
    color: #e2e8f0;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-info-dark h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.testimonial-info-dark span {
    color: #999999;
    font-size: 0.9rem;
}

/* Alert Oscuro */
.alert-dark {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,193,7,0.3);
    color: #e2e8f0;
    backdrop-filter: blur(10px);
}

.alert-dark .alert-heading {
    color: #ffc107;
}

/* CTA Oscuro */
.cta-services-dark {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color), #0a0a0f);
    color: white;
    text-align: center;
}

/* ======================== HERO TÉRMINOS ======================== */
.hero-terminos-dark {
    background: linear-gradient(135deg, rgba(10,10,15,0.95) 0%, rgba(211,47,47,0.3) 50%, rgba(10,10,15,0.98) 100%),
                url('https://cambiosmaat.com/wp-content/uploads/2024/12/terminos-condiciones.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding: 120px 0 80px;
}

.hero-terminos-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(10,10,15,0.9) 0%, rgba(211,47,47,0.15) 100%);
    z-index: 1;
}

.hero-terminos-dark .container {
    position: relative;
    z-index: 2;
}

/* Breadcrumb términos */
.breadcrumb-terminos {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
}

.breadcrumb-terminos .breadcrumb-item a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.breadcrumb-terminos .breadcrumb-item a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.breadcrumb-terminos .breadcrumb-item.active {
    color: var(--primary-light);
    font-weight: 600;
}

.breadcrumb-terminos .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.7);
    content: "›";
    font-size: 1.2rem;
    padding: 0 10px;
}

/* ======================== CONTENIDO TÉRMINOS ======================== */
.terminos-content-dark {
    background: #0a0a0f;
}

.accordion-terminos-dark .accordion-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.accordion-terminos-dark .accordion-item:hover {
    border-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.accordion-terminos-dark .accordion-button {
    background: rgba(255,255,255,0.05);
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    border: none;
    box-shadow: none;
}

.accordion-terminos-dark .accordion-button:not(.collapsed) {
    background: rgba(234,88,12,0.1);
    color: var(--orange-light);
}

.accordion-terminos-dark .accordion-button::after {
    filter: invert(1);
}

.accordion-terminos-dark .accordion-body {
    background: rgba(0,0,0,0.3);
    color: #cccccc;
    line-height: 1.7;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem;
}

.accordion-terminos-dark .accordion-body p {
    margin-bottom: 1rem;
}

.accordion-terminos-dark .accordion-body p:last-child {
    margin-bottom: 0;
}

/* ======================== INFORMACIÓN DE CONTACTO ======================== */
.contact-info-dark .contact-item {
    padding: 2rem 1rem;
    border-radius: 15px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-dark .contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--orange);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 768px) {
    .hero-terminos-dark {
        min-height: 40vh;
        padding: 100px 0 60px;
    }
    
    .hero-terminos-dark h1 {
        font-size: 2.5rem;
    }
    
    .accordion-terminos-dark .accordion-button {
        font-size: 1rem;
        padding: 1.2rem;
    }
    
    .contact-info-dark .contact-item {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-terminos-dark h1 {
        font-size: 2rem;
    }
    
    .accordion-terminos-dark .accordion-button {
        font-size: 0.95rem;
        padding: 1rem;
    }
}

/* Estilos específicos para el blog */
.blog-dark-theme {
    background: #0a0a0f;
    color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
}

.hero-blog-dark {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-blog-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://cambiosmaat.com/wp-content/uploads/2024/12/blog.jpg') center/cover;
    opacity: 0.1;
}

.breadcrumb-blog .breadcrumb-item a {
    color: #64ffda;
    text-decoration: none;
}

.breadcrumb-blog .breadcrumb-item.active {
    color: #e0e0e0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card-dark {
    background: linear-gradient(145deg, #1e1e2e, #2a2a3a);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #333344;
    position: relative;
}

.blog-card-dark:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #64ffda;
}

.blog-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card-dark:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, #64ffda, #00bcd4);
    color: #0a0a0f;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #888;
}

.blog-card-meta i {
    color: #64ffda;
    margin-right: 5px;
}

.blog-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: #64ffda;
}

.blog-card-excerpt {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #333344;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-author-info h6 {
    margin: 0;
    font-size: 0.9rem;
    color: #ffffff;
}

.blog-author-info span {
    font-size: 0.8rem;
    color: #888;
}

.read-more-btn {
    background: linear-gradient(45deg, #64ffda, #00bcd4);
    color: #0a0a0f;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more-btn:hover {
    transform: translateX(5px);
    color: #0a0a0f;
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
}

.blog-sidebar {
    background: linear-gradient(145deg, #1e1e2e, #2a2a3a);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #333344;
}

.sidebar-widget {
    margin-bottom: 40px;
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #64ffda;
    color: #ffffff;
}

.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 10px;
}

.categories-list a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.categories-list a:hover {
    color: #64ffda;
}

.categories-list span {
    background: #333344;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

.recent-posts .recent-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333344;
}

.recent-post-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h6 {
    margin: 0 0 5px 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.recent-post-content h6 a {
    color: #ffffff;
    text-decoration: none;
}

.recent-post-content h6 a:hover {
    color: #64ffda;
}

.recent-post-date {
    font-size: 0.8rem;
    color: #888;
}

.pagination-blog {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    gap: 10px;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #1e1e2e;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #333344;
}

.page-numbers:hover,
.page-numbers.current {
    background: linear-gradient(45deg, #64ffda, #00bcd4);
    color: #0a0a0f;
    border-color: #64ffda;
}

.newsletter-widget {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333344;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    background: #1e1e2e;
    border: 1px solid #333344;
    border-radius: 25px;
    padding: 12px 20px;
    color: #ffffff;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #64ffda;
}

.newsletter-form button {
    background: linear-gradient(45deg, #64ffda, #00bcd4);
    border: none;
    border-radius: 25px;
    padding: 12px 25px;
    color: #0a0a0f;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .hero-blog-dark {
        padding: 100px 0 60px;
    }
}

/* Estilos específicos para el post individual */
        .post-dark-theme {
            background: #0a0a0f;
            color: #e0e0e0;
            font-family: 'Poppins', sans-serif;
        }

        .hero-post-dark {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-post-dark::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            
            opacity: 0.1;
        }

        .breadcrumb-post .breadcrumb-item a {
            color: #64ffda;
            text-decoration: none;
        }

        .breadcrumb-post .breadcrumb-item.active {
            color: #e0e0e0;
        }

        .post-content-dark {
            background: linear-gradient(145deg, #1e1e2e, #2a2a3a);
            border-radius: 15px;
            padding: 40px;
            border: 1px solid #333344;
            margin-bottom: 40px;
        }

        .post-header {
            margin-bottom: 30px;
        }

        .post-category {
            background: linear-gradient(45deg, #64ffda, #00bcd4);
            color: #0a0a0f;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 20px;
        }

        .post-title {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .post-meta {
            display: flex;
            align-items: center;
            gap: 30px;
            margin-bottom: 30px;
            color: #888;
            font-size: 0.95rem;
        }

        .post-meta i {
            color: #64ffda;
            margin-right: 8px;
        }

        .post-featured-image {
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .post-featured-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .post-body {
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .post-body h2 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 40px 0 20px;
            color: #64ffda;
            border-left: 4px solid #64ffda;
            padding-left: 15px;
        }

        .post-body h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin: 30px 0 15px;
            color: #ffffff;
        }

        .post-body p {
            margin-bottom: 20px;
            color: #b0b0b0;
        }

        .post-body strong {
            color: #ffffff;
            font-weight: 600;
        }

        .post-body figure {
            margin: 30px 0;
            text-align: center;
        }

        .post-body figcaption {
            font-size: 0.9rem;
            color: #888;
            margin-top: 10px;
            font-style: italic;
        }

        .alert-warning-custom {
            background: linear-gradient(135deg, #ffd166, #ff9e00);
            border: none;
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            color: #0a0a0f;
            font-weight: 600;
        }

        .alert-info-custom {
            background: linear-gradient(135deg, #64ffda, #00bcd4);
            border: none;
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            color: #0a0a0f;
            font-weight: 600;
        }

        .post-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 40px 0;
            padding-top: 30px;
            border-top: 1px solid #333344;
        }

        .tag {
            background: #333344;
            color: #b0b0b0;
            padding: 8px 16px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .tag:hover {
            background: #64ffda;
            color: #0a0a0f;
        }

        .post-navigation {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 50px 0;
            padding: 30px;
            background: linear-gradient(145deg, #1e1e2e, #2a2a3a);
            border-radius: 15px;
            border: 1px solid #333344;
        }

        .nav-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #64ffda;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .nav-btn:hover {
            color: #ffffff;
            transform: translateX(-5px);
        }

        .nav-btn.next {
            text-align: right;
        }

        .nav-btn.next:hover {
            transform: translateX(5px);
        }

        .author-box {
            background: linear-gradient(145deg, #1e1e2e, #2a2a3a);
            border-radius: 15px;
            padding: 30px;
            margin: 50px 0;
            border: 1px solid #333344;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .author-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #64ffda;
        }

        .author-info h4 {
            color: #ffffff;
            margin-bottom: 10px;
        }

        .author-info p {
            color: #b0b0b0;
            margin: 0;
        }

        .comments-section {
            background: linear-gradient(145deg, #1e1e2e, #2a2a3a);
            border-radius: 15px;
            padding: 40px;
            margin: 50px 0;
            border: 1px solid #333344;
        }

        .comments-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: #ffffff;
            border-bottom: 2px solid #64ffda;
            padding-bottom: 10px;
        }

        .comment {
            background: #1a1a2e;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 20px;
            border: 1px solid #333344;
        }

        .comment-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .comment-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .comment-author {
            color: #ffffff;
            font-weight: 600;
            margin: 0;
        }

        .comment-date {
            color: #888;
            font-size: 0.9rem;
        }

        .comment-content {
            color: #b0b0b0;
            line-height: 1.6;
        }

        .comment-form {
            background: #1a1a2e;
            border-radius: 10px;
            padding: 30px;
            border: 1px solid #333344;
        }

        .form-control {
            background: #0a0a0f;
            border: 1px solid #333344;
            color: #ffffff;
            border-radius: 10px;
            padding: 12px 15px;
            margin-bottom: 20px;
        }

        .form-control:focus {
            background: #0a0a0f;
            border-color: #64ffda;
            color: #ffffff;
            box-shadow: 0 0 0 0.2rem rgba(100, 255, 218, 0.25);
        }

        .btn-primary-custom {
            background: linear-gradient(45deg, #64ffda, #00bcd4);
            border: none;
            border-radius: 25px;
            padding: 12px 30px;
            color: #0a0a0f;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(100, 255, 218, 0.3);
        }

        .sidebar-widget {
            background: linear-gradient(145deg, #1e1e2e, #2a2a3a);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid #333344;
        }

        .widget-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #ffffff;
            border-bottom: 2px solid #64ffda;
            padding-bottom: 10px;
        }

        @media (max-width: 768px) {
            .post-title {
                font-size: 2rem;
            }
            
            .post-meta {
                flex-direction: column;
                gap: 15px;
            }
            
            .post-navigation {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            
            .author-box {
                flex-direction: column;
                text-align: center;
            }
        }
		
/* Estilos específicos para posts individuales */
.post-dark-theme {
    background: #0a0a0f;
    color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
}

.hero-post-dark {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-post-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://cambiosmaat.com/wp-content/uploads/2022/03/MALOS-COMENTARIOS2.png') center/cover;
    opacity: 0.1;
}

.breadcrumb-post .breadcrumb-item a {
    color: #64ffda;
    text-decoration: none;
}

.breadcrumb-post .breadcrumb-item.active {
    color: #e0e0e0;
}

.post-content-dark {
    background: linear-gradient(145deg, #1e1e2e, #2a2a3a);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid #333344;
    margin-bottom: 40px;
}

.post-header {
    margin-bottom: 30px;
}

.post-category {
    background: linear-gradient(45deg, #64ffda, #00bcd4);
    color: #0a0a0f;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.post-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin
}

/* Estilos específicos para equipo */
        .hero-equipo {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
            color: var(--white) !important;
        }
        
        .hero-equipo::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://cambiosmaat.com/wp-content/uploads/2024/12/operaciones-realizadas.jpg') center/cover;
            opacity: 0.1;
        }
        
        .hero-equipo * {
            color: var(--white) !important;
        }
        
        .team-card {
            background: var(--white);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
            height: 100%;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .team-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 3rem;
            border: 5px solid #f0f0f0;
        }
        
        .team-role {
            background: var(--primary-color);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 15px;
            display: inline-block;
        }
        
        .team-stats {
            background: var(--bg-light);
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .department-section {
            background: var(--bg-light);
            border-radius: 15px;
            padding: 40px;
            margin: 30px 0;
        }
        
        .department-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2rem;
            margin-bottom: 20px;
        }
        
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--primary-color);
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
            padding-left: 30px;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 15px;
            height: 15px;
            background: var(--primary-color);
            border-radius: 50%;
            border: 3px solid var(--white);
        }