/* Colores Corporativos */
:root {
    --color-ecu: #eaab2b;        /* Amarillo dorado */
    --color-rai: #2574b4;        /* Azul */
    --color-ces: #e2252d;        /* Rojo */
    --color-webcams: #3288cc;    /* Azul claro */
    --color-light: #ebeeea;      /* Gris claro */
    --color-dark: #27211a;       /* Negro/marrón oscuro */
    --color-brown: #a76755;      /* Marrón */
    --color-gray: #636363;       /* Gris */
}

/* Estilos Generales */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--color-dark);
}

/* Navbar */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Logo text removed - using image only */

.logo-ecu {
    color: var(--color-ecu);
}

.logo-rai {
    color: var(--color-rai);
}

.logo-ces {
    color: var(--color-ces);
}

.logo-webcams {
    color: var(--color-webcams);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.navbar-nav .nav-link {
    color: var(--color-dark) !important;
    font-weight: 600;
    margin: 0 0.25rem;
    padding: 0.5rem 1.25rem !important;
    border-radius: 25px;
    transition: all 0.3s;
    position: relative;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-rai) 0%, var(--color-webcams) 100%);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.navbar-nav .nav-link:hover {
    color: white !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link:hover::before {
    opacity: 1;
}

.navbar-nav .nav-link.active {
    color: white !important;
    background: linear-gradient(135deg, var(--color-rai) 0%, var(--color-webcams) 100%);
    box-shadow: 0 4px 12px rgba(37, 116, 180, 0.3);
}

.navbar-nav .nav-link.active::before {
    opacity: 1;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: auto;
    padding: 4rem 0;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-background {
    display: none; /* Eliminamos la imagen de fondo */
}

.hero-overlay {
    display: none; /* Eliminamos el overlay */
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-dark);
    padding: 2rem 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(226, 37, 45, 0.9);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(226, 37, 45, 0.4);
}

.badge-text {
    color: white;
}

.hero-logo {
    text-align: center;
}

.hero-logo-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.2;
    color: var(--color-dark);
    text-shadow: none;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

/* Colores corporativos para cada estadística */
.stat-item:nth-child(1) .stat-number {
    color: var(--color-ecu); /* Dorado para "1+" */
}

.stat-item:nth-child(2) .stat-number {
    color: var(--color-rai); /* Azul para "24/7" */
}

.stat-item:nth-child(3) .stat-number {
    color: var(--color-ces); /* Rojo para "HD" */
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin-top: 0.5rem;
    font-weight: 600;
}

.hero-row-spacing {
    padding-top: 3rem !important;
}

.hero-camera-link {
    display: inline-block;
    text-decoration: none;
    width: 100%;
    margin-top: 100px;
    line-height: 0;
    font-size: 0;
}

.hero-camera-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: stretch;
    line-height: 0;
    font-size: 0;
    border: 3px solid var(--color-ecu);
    border-radius: 20px;
    overflow: hidden;
    background: black; /* Fondo negro para evitar espacios blancos visibles */
}

.hero-camera-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    border: 0;
    object-fit: cover; /* Asegura que cubra todo */
}

.camera-location-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    box-shadow: none;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.camera-location-badge i {
    color: var(--color-ecu);
    font-size: 1.1rem;
}

/* Estilos antiguos eliminados - estructura simplificada */

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

.btn-play {
    font-size: 5rem;
    color: var(--color-ecu);
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s;
    opacity: 0.9;
}

.hero-camera-link:hover .btn-play {
    transform: scale(1.1);
    opacity: 1;
}

.live-badge-hero {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(226, 37, 45, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.text-ecu {
    color: var(--color-ecu);
}

.text-rai {
    color: var(--color-rai);
}

.text-ces {
    color: var(--color-ces);
}

.text-webcams {
    color: var(--color-webcams);
    font-size: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--color-rai) 0%, var(--color-webcams) 100%);
    border: none;
    color: white;
    padding: 0.875rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 116, 180, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    min-width: 180px;
    justify-content: center;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 116, 180, 0.4);
    color: white;
}

.btn-hero-secondary {
    background: white;
    border: 2px solid var(--color-rai);
    color: var(--color-rai);
    padding: 0.875rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 10px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    min-width: 180px;
    justify-content: center;
}

.btn-hero-secondary:hover {
    background: var(--color-rai);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 116, 180, 0.3);
}

.logo-container {
    position: relative;
    display: inline-block;
}

.toucan-icon {
    font-size: 5rem;
    position: absolute;
    left: -50px;
    top: -20px;
    transform: rotate(-15deg);
}

.camera-icon {
    font-size: 4rem;
    position: absolute;
    right: -30px;
    bottom: -10px;
}

/* Categorías Section */
.categorias-section {
    background-color: #ffffff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 3rem;
}

.categoria-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border: 2px solid transparent;
}

.categoria-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--color-rai);
}

.categoria-card-enhanced {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
    border: 3px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}

.categoria-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.categoria-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.categoria-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.categoria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s;
}

.categoria-overlay-playas {
    background: linear-gradient(135deg, rgba(234, 171, 43, 0.4) 0%, rgba(50, 136, 204, 0.5) 100%);
}

.categoria-overlay-montanas {
    background: linear-gradient(135deg, rgba(37, 116, 180, 0.4) 0%, rgba(226, 37, 45, 0.4) 100%);
}

.categoria-overlay-ciudades {
    background: linear-gradient(135deg, rgba(226, 37, 45, 0.4) 0%, rgba(234, 171, 43, 0.4) 100%);
}

.categoria-overlay-naturaleza {
    background: linear-gradient(135deg, rgba(234, 171, 43, 0.4) 0%, rgba(37, 116, 180, 0.4) 100%);
}

.categoria-overlay-volcanes {
    background: linear-gradient(135deg, rgba(226, 37, 45, 0.4) 0%, rgba(37, 116, 180, 0.4) 100%);
}

.categoria-overlay-islas {
    background: linear-gradient(135deg, rgba(50, 136, 204, 0.4) 0%, rgba(234, 171, 43, 0.4) 100%);
}

.categoria-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: white;
    opacity: 0;
    transition: all 0.3s;
    z-index: 2;
}

.categoria-card-enhanced:hover .categoria-image {
    transform: scale(1.15);
}

.categoria-card-enhanced:hover .categoria-overlay {
    opacity: 1;
}

.categoria-card-enhanced:hover .categoria-icon-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.categoria-content {
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.categoria-content h4 {
    font-weight: bold;
    margin-bottom: 1rem;
}

.categoria-title-playas {
    color: var(--color-ecu);
}

.categoria-title-montanas {
    color: var(--color-rai);
}

.categoria-title-ciudades {
    color: var(--color-ces);
}

.categoria-title-naturaleza {
    color: var(--color-ecu);
}

.categoria-title-volcanes {
    color: var(--color-ces);
}

.categoria-title-islas {
    color: var(--color-rai);
}

.categoria-content p {
    color: var(--color-gray);
    flex-grow: 1;
    margin-bottom: 1rem;
}

.categoria-count {
    margin-top: auto;
    margin-bottom: 1rem;
}

.categoria-badge-active {
    background: var(--color-rai) !important;
    color: white;
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 20px;
}

.categoria-badge-coming {
    background: var(--color-gray) !important;
    color: white;
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 20px;
}

.categoria-btn-active {
    background: var(--color-rai);
    border-color: var(--color-rai);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s;
}

.categoria-btn-active:hover {
    background: var(--color-webcams);
    border-color: var(--color-webcams);
    color: white;
    transform: translateX(5px);
}

.categoria-btn-coming {
    background: white;
    border: 2px solid var(--color-rai);
    color: var(--color-rai);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s;
}

.categoria-btn-coming:hover {
    background: var(--color-rai);
    border-color: var(--color-rai);
    color: white;
    transform: translateX(5px);
}

.categoria-camara-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.camara-item-enhanced {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-light);
    border-radius: 10px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.camara-item-enhanced:hover {
    background: white;
    border-color: var(--color-rai);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(37, 116, 180, 0.2);
}

.camara-item-enhanced i:first-child {
    font-size: 1.5rem;
    color: var(--color-rai);
}

.camara-item-enhanced i:last-child {
    font-size: 1.2rem;
    color: var(--color-rai);
    margin-left: auto;
}

.camara-item-info {
    flex-grow: 1;
}

.camara-item-info strong {
    display: block;
    color: var(--color-dark);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.camara-item-info small {
    color: var(--color-gray);
    font-size: 0.85rem;
}

.categoria-icon {
    font-size: 3rem;
    color: var(--color-rai);
    margin-bottom: 1rem;
}

.categoria-card h4 {
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.categoria-card p {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

/* Categorías Grid */
.categoria-card-large {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    border: 2px solid transparent;
}

.categoria-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--color-rai);
}

.categoria-header {
    background: linear-gradient(135deg, var(--color-rai) 0%, var(--color-webcams) 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.categoria-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.categoria-header h3 {
    margin: 0;
    font-weight: bold;
}

.categoria-body {
    padding: 2rem;
}

.categoria-stats {
    margin-top: 1rem;
}

.camara-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-light);
    border-radius: 10px;
    margin-top: 1rem;
}

.camara-item i {
    font-size: 1.5rem;
    color: var(--color-rai);
}

.camara-item strong {
    display: block;
    color: var(--color-dark);
}

/* Cámaras Section */
.camaras-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.camara-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.camara-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.camara-thumbnail {
    position: relative;
    overflow: hidden;
}

.camara-thumbnail img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.camara-card:hover .camara-thumbnail img {
    transform: scale(1.1);
}

.camara-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.camara-card:hover .camara-hover-overlay {
    opacity: 1;
}

.btn-play-overlay {
    font-size: 3rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    transition: transform 0.3s;
}

.btn-play-overlay:hover {
    transform: scale(1.2);
    color: var(--color-ecu);
}

.live-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(226, 37, 45, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.camara-info {
    padding: 1.5rem;
}

.camara-info h5 {
    color: var(--color-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
}

/* Detalle Section */
.detalle-section {
    background-color: #ffffff;
}

.video-container {
    background: var(--color-dark);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
}

.live-badge-large {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(226, 37, 45, 0.95);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 5;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.video-controls {
    background: white;
    padding: 1rem;
    border-radius: 0 0 15px 15px;
}

.camara-info-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.camara-header h2 {
    color: var(--color-dark);
    font-weight: bold;
}

.camara-badges .badge {
    margin-right: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.camara-details {
    margin-top: 2rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.detail-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.detail-item strong {
    display: block;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.detail-item p {
    color: var(--color-gray);
    margin: 0;
}

.weather-card {
    background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.weather-card h5 {
    color: var(--color-dark);
    font-weight: 600;
}

.weather-info {
    margin-top: 1rem;
}

.weather-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-gray);
}

.weather-item i {
    color: var(--color-rai);
    font-size: 1.25rem;
}

.related-camara-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.related-camara-card:hover {
    transform: translateY(-5px);
}

.related-thumbnail {
    position: relative;
}

.related-thumbnail img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.coming-soon-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--color-gray);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.related-info {
    padding: 1rem;
}

.related-info h6 {
    color: var(--color-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* Footer */
.footer-section {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-gray) 100%);
    color: var(--color-light);
    padding: 4rem 0 2rem 0;
}

.footer-logo {
    max-width: 220px;
    width: auto;
    height: 60px;
    opacity: 1;
    display: block;
    object-fit: contain;
    background: transparent;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-title {
    color: var(--color-ecu);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-ecu);
    transform: translateX(5px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--color-ecu);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-item a:hover {
    color: var(--color-ecu);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 3rem 0 2rem 0;
    opacity: 0.3;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* Buttons */
.btn-primary {
    background-color: var(--color-rai);
    border-color: var(--color-rai);
}

.btn-primary:hover {
    background-color: var(--color-webcams);
    border-color: var(--color-webcams);
}

.btn-outline-primary {
    border-color: var(--color-rai);
    color: var(--color-rai);
}

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

/* Breadcrumb */
.breadcrumb {
    background: var(--color-light);
    padding: 1rem;
    border-radius: 10px;
}

.breadcrumb-item a {
    color: var(--color-rai);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--color-dark);
}

/* Mapa Section */
.mapa-section {
    background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
}

.mapa-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.mapa-wrapper {
    height: 500px;
    width: 100%;
    border-radius: 20px;
}

.mapa-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.mapa-detalle {
    height: 300px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

/* Estilos para marcadores del mapa */
.custom-marker {
    background: transparent;
    border: none;
}

.marker-camera {
    width: 40px;
    height: 40px;
    background: var(--color-rai);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    border: 3px solid white;
    transition: transform 0.3s;
}

.marker-camera:hover {
    transform: scale(1.1);
}

.custom-marker-detalle {
    background: transparent;
    border: none;
}

.marker-camera-detalle {
    width: 50px;
    height: 50px;
    background: var(--color-rai);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    border: 4px solid white;
    animation: pulse-marker 2s infinite;
}

@keyframes pulse-marker {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 116, 180, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 116, 180, 0.6);
    }
}

/* Popup del mapa */
.popup-camara {
    text-align: center;
    min-width: 200px;
}

.popup-camara-detalle {
    text-align: center;
    min-width: 200px;
}

/* Header Logo */
.header-logo {
    max-width: 350px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

/* Page Header Enhanced */
.page-header {
    background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
    border-bottom: 3px solid var(--color-rai);
    padding: 4rem 0 !important;
}

.page-header h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

.page-header .lead {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .text-webcams {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .toucan-icon,
    .camera-icon {
        display: none;
    }
    
    .hero-logo-img {
        max-width: 200px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .navbar-logo {
        height: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-background {
        background-size: cover;
        background-position: center;
    }
    
    .hero-camera-img {
        width: 100%;
        height: auto;
    }
    
    .camera-location-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        bottom: 10px;
        left: 10px;
    }
    
    .mapa-wrapper {
        height: 400px;
    }
    
    .mapa-detalle {
        height: 250px;
    }
}

/* ============================================
   DETALLE PAGE ENHANCED STYLES
   ============================================ */

/* Breadcrumb Enhanced */
.breadcrumb-container {
    padding: 0;
}

.breadcrumb-enhanced {
    background: transparent;
    padding: 0.75rem 1rem;
    margin: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
    border: 1px solid rgba(37, 116, 180, 0.1);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.breadcrumb-enhanced .breadcrumb-item-enhanced {
    display: flex;
    align-items: center;
    list-style: none;
    font-size: 0.875rem;
}

.breadcrumb-enhanced .breadcrumb-item-enhanced:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    color: var(--color-gray);
    font-weight: normal;
}

.breadcrumb-enhanced .breadcrumb-item-enhanced a {
    color: var(--color-rai);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
}

.breadcrumb-enhanced .breadcrumb-item-enhanced a:hover {
    color: var(--color-ecu);
    background: rgba(234, 171, 43, 0.1);
    text-decoration: none;
}

.breadcrumb-enhanced .breadcrumb-item-enhanced a i {
    font-size: 0.9rem;
}

.breadcrumb-enhanced .breadcrumb-item-enhanced.active {
    color: var(--color-dark);
    font-weight: 600;
    padding: 0.25rem 0.5rem;
}

/* Camara Header Top - Encima de la imagen */
.camara-header-top {
    background: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.camara-title-top {
    font-size: 1.75rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.camara-location-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gray);
    font-size: 0.95rem;
}

.camara-location-top i {
    color: var(--color-rai);
    font-size: 1rem;
}

/* Camara Description Card - Primera tarjeta a la derecha */
.camara-description-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border: 2px solid var(--color-light);
    transition: all 0.3s;
}

.camara-description-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    transform: translateY(-3px);
}

.description-header {
    border-bottom: 2px solid var(--color-light);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.description-header h5 {
    color: var(--color-dark);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.description-header h5 i {
    color: var(--color-rai);
    font-size: 1.5rem;
}

.description-content {
    margin-bottom: 1.5rem;
}

.description-content p {
    color: var(--color-gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.description-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--color-light);
}

.description-detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-gray);
    font-size: 0.95rem;
}

.description-detail-item i {
    color: var(--color-ecu);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Video Container Enhanced */
.video-container-enhanced {
    background: var(--color-dark);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    border: 3px solid var(--color-ecu);
}

.video-wrapper-enhanced {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
}

.video-placeholder-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-iframe-enhanced {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    pointer-events: auto;
}


/* Sponsor Banner - Segunda tarjeta a la derecha */
.sponsor-banner {
    background: linear-gradient(135deg, var(--color-ecu) 0%, #f5c85a 100%);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 8px 30px rgba(234, 171, 43, 0.3);
    border: 3px solid var(--color-ecu);
    position: relative;
    overflow: hidden;
}

.sponsor-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

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

.sponsor-banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sponsor-image-wrapper {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: #f0f0f0;
    position: relative;
}

.sponsor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.sponsor-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-dark);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.sponsor-info {
    width: 100%;
}

.sponsor-title {
    color: var(--color-dark);
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.sponsor-description {
    color: var(--color-dark);
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.btn-sponsor {
    background: var(--color-dark);
    color: var(--color-ecu);
    border: 2px solid var(--color-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-sponsor:hover {
    background: transparent;
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* .sponsor-image removido - ya no se usa el icono */

/* Camara Info Card Enhanced - Ya no se usa, se reemplazó por description card */

.badge-categoria {
    background: linear-gradient(135deg, var(--color-rai) 0%, var(--color-webcams) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-activa {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.camara-details-enhanced {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.detail-item-enhanced {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.detail-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--color-ecu) 0%, #f5c85a 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.detail-content {
    flex: 1;
}

.detail-content strong {
    color: var(--color-dark);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.25rem;
}

.detail-content p {
    color: var(--color-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.camara-actions-enhanced {
    border-top: 2px solid var(--color-light);
    padding-top: 1.5rem;
}

.btn-back-categoria {
    background: linear-gradient(135deg, var(--color-rai) 0%, var(--color-webcams) 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-back-categoria:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 116, 180, 0.4);
    color: white;
}

/* Weather Card Enhanced */
.weather-card-enhanced {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-light) 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 2px solid var(--color-light);
}

.weather-header {
    border-bottom: 2px solid var(--color-light);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.weather-header h5 {
    color: var(--color-dark);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.weather-header h5 i {
    color: var(--color-rai);
    font-size: 1.5rem;
}

.weather-info-enhanced {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.weather-item-enhanced {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 2px solid var(--color-light);
    transition: all 0.3s;
}

.weather-item-enhanced:hover {
    border-color: var(--color-ecu);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(234, 171, 43, 0.2);
}

.weather-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--color-rai) 0%, var(--color-webcams) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.weather-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.weather-label {
    font-size: 0.85rem;
    color: var(--color-gray);
}

.weather-value {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-dark);
}

/* Mapa Card Enhanced */
.mapa-card-enhanced {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-light) 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 2px solid var(--color-light);
}

.mapa-header {
    border-bottom: 2px solid var(--color-light);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.mapa-header h5 {
    color: var(--color-dark);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mapa-header h5 i {
    color: var(--color-rai);
    font-size: 1.5rem;
}

.mapa-detalle-enhanced {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--color-ecu);
    box-shadow: 0 4px 15px rgba(234, 171, 43, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .camara-title-top {
        font-size: 1.75rem;
    }
    
    .camara-location-top {
        font-size: 1rem;
    }
    
    .sponsor-banner-content {
        gap: 1rem;
    }
    
    
    .camara-description-card,
    .sponsor-banner,
    .weather-card-enhanced,
    .mapa-card-enhanced {
        margin-bottom: 1.5rem;
    }
}

/* ============================================
   ÚNETE PAGE STYLES
   ============================================ */

/* Hero Section */
.unete-hero {
    background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
    border-bottom: 3px solid var(--color-ecu);
}

/* Sobre el Proyecto */
.sobre-proyecto {
    background: white;
}

.proyecto-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--color-rai) 0%, var(--color-webcams) 100%);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 8px 30px rgba(37, 116, 180, 0.3);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(37, 116, 180, 0.4);
}

.stat-card:nth-child(2) {
    background: linear-gradient(135deg, var(--color-ecu) 0%, #f5c85a 100%);
    box-shadow: 0 8px 30px rgba(234, 171, 43, 0.3);
}

.stat-card:nth-child(2):hover {
    box-shadow: 0 12px 40px rgba(234, 171, 43, 0.4);
}

.stat-card:nth-child(3) {
    background: linear-gradient(135deg, var(--color-ces) 0%, #ff4757 100%);
    box-shadow: 0 8px 30px rgba(226, 37, 45, 0.3);
}

.stat-card:nth-child(3):hover {
    box-shadow: 0 12px 40px rgba(226, 37, 45, 0.4);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin: 0;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    margin: 0.5rem 0 0 0;
    font-size: 1rem;
}

/* Formas de Colaborar */
.formas-colaborar {
    background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
}

.colaboracion-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    border: 2px solid var(--color-light);
    transition: all 0.3s;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.colaboracion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    border-color: var(--color-ecu);
}

.colaboracion-card-featured {
    border: 3px solid var(--color-ecu);
    background: linear-gradient(135deg, #ffffff 0%, rgba(234, 171, 43, 0.05) 100%);
}

.colaboracion-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-ecu) 0%, #f5c85a 100%);
    color: var(--color-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(234, 171, 43, 0.3);
}

.colaboracion-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-rai) 0%, var(--color-webcams) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 116, 180, 0.3);
}

.colaboracion-card-featured .colaboracion-icon {
    background: linear-gradient(135deg, var(--color-ecu) 0%, #f5c85a 100%);
    box-shadow: 0 4px 15px rgba(234, 171, 43, 0.3);
}

.colaboracion-title {
    color: var(--color-dark);
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.colaboracion-description {
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.colaboracion-beneficios {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.colaboracion-beneficios li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-dark);
}

.colaboracion-beneficios li i {
    color: var(--color-ecu);
    font-size: 1.1rem;
}

.btn-colaboracion {
    background: linear-gradient(135deg, var(--color-rai) 0%, var(--color-webcams) 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    width: 100%;
}

.btn-colaboracion:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 116, 180, 0.4);
    color: white;
}

/* Proceso de Colaboración */
.proceso-colaboracion {
    background: white;
}

.proceso-step {
    text-align: center;
    padding: 2rem 1rem;
}

.proceso-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-ecu) 0%, #f5c85a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-dark);
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 30px rgba(234, 171, 43, 0.3);
}

.proceso-title {
    color: var(--color-dark);
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.proceso-description {
    color: var(--color-gray);
    line-height: 1.6;
    margin: 0;
}

/* Contacto Simple */
.contacto-simple {
    background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
}

.contacto-email {
    margin-top: 2rem;
}

.btn-email-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--color-rai) 0%, var(--color-webcams) 100%);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 15px;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(37, 116, 180, 0.3);
}

.btn-email-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(37, 116, 180, 0.4);
    color: white;
    text-decoration: none;
}

.btn-email-link i {
    font-size: 1.5rem;
}

/* Responsive Únete */
@media (max-width: 768px) {
    .proyecto-stats {
        margin-top: 2rem;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    .colaboracion-card {
        margin-bottom: 2rem;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
    
    .proceso-step {
        margin-bottom: 2rem;
    }
}

/* ============================================
   CÁMARAS RELACIONADAS ENHANCED
   ============================================ */

.section-header-related {
    border-bottom: 3px solid var(--color-light);
    padding-bottom: 1.5rem;
}

.section-header-related h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.related-camara-card-enhanced {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 2px solid var(--color-light);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.related-camara-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    border-color: var(--color-ecu);
}

.related-thumbnail-enhanced {
    position: relative;
    width: 100%;
    padding-top: 66.67%; /* 3:2 Aspect Ratio */
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-light) 0%, #ffffff 100%);
}

.related-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.related-camara-card-enhanced:hover .related-image {
    transform: scale(1.1);
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.coming-soon-badge-enhanced {
    background: linear-gradient(135deg, var(--color-ecu) 0%, #f5c85a 100%);
    color: var(--color-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(234, 171, 43, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.coming-soon-badge-enhanced i {
    font-size: 1.1rem;
}

.related-info-enhanced {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.related-title {
    color: var(--color-dark);
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.related-description {
    color: var(--color-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex: 1;
}

.related-category-badge {
    margin-top: auto;
}

.badge-coming-soon {
    background: linear-gradient(135deg, var(--color-rai) 0%, var(--color-webcams) 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Responsive Cámaras Relacionadas */
@media (max-width: 768px) {
    .related-camara-card-enhanced {
        margin-bottom: 1.5rem;
    }
    
    .section-header-related h3 {
        font-size: 1.5rem;
    }
}

