/* ===========================
   RESET & VARIABLES
   =========================== */
:root {
    --primary-color: #d4af37;
    --secondary-color: #1a1a1a;
    --accent-color: #c9a961;
    --text-color: #ffffff;
    --text-gray: #a0a0a0;
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo a {
    display: inline-block;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    margin: 5px;
    transition: var(--transition);
}

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

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-background.jpg');
    background-size: cover;
    background-position: 65% center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
    z-index: 0;
}

/* Imagen específica para orientación vertical - MÚLTIPLES SELECTORES PARA ASEGURAR */
/* Nivel 1: Orientación portrait general */
@media (orientation: portrait) {
    .hero .hero-background,
    section#inicio .hero-background,
    .hero-background {
        background-image: url('../images/hero-background-mobile.jpg') !important;
        background-position: center center !important;
        filter: brightness(0.5) !important;
    }
}

/* Nivel 2: Portrait + Ancho máximo para tablets/móviles */
@media (max-width: 1024px) and (orientation: portrait) {
    section.hero .hero-background,
    .hero > .hero-background {
        background-image: url('../images/hero-background-mobile.jpg') !important;
        background-position: center center !important;
        background-size: cover !important;
        filter: brightness(0.5) !important;
    }
}

/* Nivel 3: Móviles pequeños (independiente de orientación) */
@media (max-width: 768px) {
    body .hero .hero-background,
    #inicio .hero-background {
        background-image: url('../images/hero-background-mobile.jpg') !important;
        background-position: center center !important;
        filter: brightness(0.5) !important;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 169, 97, 0.15) 0%, transparent 50%);
    animation: pulse 10s ease-in-out infinite;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.2) 0%,
        rgba(26, 26, 26, 0.4) 50%,
        rgba(10, 10, 10, 0.7) 100%
    );
    z-index: 2;
}

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

.hero-logo {
    max-width: 500px;
    width: 90%;
    height: auto;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
    filter: drop-shadow(0 10px 30px rgba(212, 175, 55, 0.3));
}

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

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--text-gray);
    letter-spacing: 3px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

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

.btn {
    padding: 15px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 0;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 0.8rem;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===========================
   SECTIONS
   =========================== */
section {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: 5px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    margin: 20px auto;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 60px;
    letter-spacing: 1px;
}

/* ===========================
   SHOWREEL SECTION
   =========================== */
.showreel-section {
    background: var(--bg-darker);
    padding: 100px 0;
}

.main-video-wrapper {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.video-thumbnail-link {
    display: block;
    text-decoration: none;
}

.video-thumbnail-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    cursor: pointer;
}

.video-thumbnail-container:hover {
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.5);
    transform: translateY(-5px);
}

.video-thumbnail-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-thumbnail-container:hover img {
    transform: scale(1.05);
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.7) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-thumbnail-container:hover .video-play-overlay {
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.5) 0%,
        rgba(10, 10, 10, 0.8) 100%
    );
}

.play-button-large {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    border: 4px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.play-button-large:hover {
    background: var(--accent-color);
    transform: scale(1.15);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
}

.play-button-large svg {
    width: 40px;
    height: 40px;
    fill: var(--bg-dark);
    margin-left: 5px;
}

.play-button-small {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-thumbnail-container:hover .play-button-small {
    background: var(--accent-color);
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.play-button-small svg {
    width: 28px;
    height: 28px;
    fill: var(--bg-dark);
    margin-left: 3px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.videos-grid .video-thumbnail-container {
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.videos-grid .video-thumbnail-container:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.showreel-cta {
    text-align: center;
    margin-top: 60px;
}

/* ===========================
   VIDEO MODAL
   =========================== */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    z-index: 10;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-modal-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.video-modal-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
    transition: var(--transition);
}

.video-modal-close:hover svg {
    stroke: var(--bg-dark);
}

.video-modal-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: var(--bg-dark);
    border: 3px solid var(--primary-color);
}

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

.video-error-message {
    text-align: center;
    padding: 40px;
    background: var(--secondary-color);
    border: 2px solid var(--primary-color);
    margin-top: 20px;
}

.video-error-message p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
    }

    .video-modal-close {
        top: -40px;
        right: 0;
    }
}

/* ===========================
   PORTFOLIO SECTION
   =========================== */
.portfolio-section {
    background: var(--bg-dark);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 30px;
    background: transparent;
    color: var(--text-gray);
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--bg-dark);
    border-color: var(--primary-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.portfolio-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
}

.portfolio-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-thumbnail img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.portfolio-link {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-color);
    color: var(--bg-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
}

.portfolio-link:hover {
    background: var(--accent-color);
    transform: translateX(5px);
}

/* ===========================
   SERVICIOS SECTION
   =========================== */
.servicios-section {
    background: var(--bg-darker);
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.servicio-card {
    background: var(--secondary-color);
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.servicio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

.servicio-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.servicio-card:hover::before {
    left: 0;
}

.servicio-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.servicio-card h3 {
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.servicio-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.servicio-features {
    list-style: none;
}

.servicio-features li {
    padding: 8px 0;
    padding-left: 25px;
    color: var(--text-gray);
    position: relative;
    font-size: 0.9rem;
}

.servicio-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
    background: var(--bg-dark);
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.about-text h2 {
    text-align: left;
}

.about-text h2::after {
    margin: 20px 0;
}

.about-text h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section {
    background: var(--bg-darker);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-centered {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    flex-shrink: 0;
}

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

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.contact-item a,
.contact-item p {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--primary-color);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

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

/* ===========================
   CONTACT FORM
   =========================== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--secondary-color);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: var(--text-gray);
    pointer-events: none;
    transition: var(--transition);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    background: var(--bg-darker);
    padding: 0 5px;
    color: var(--primary-color);
}

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

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo h3 {
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    transition: var(--transition);
}

.footer-logo-img:hover {
    filter: brightness(1.2);
}

.footer-logo p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.footer-version {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: var(--primary-color);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-version:hover {
    opacity: 1;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        padding: 50px 0;
        transition: var(--transition);
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }

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

    .burger {
        display: block;
    }

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

    .about-content {
        grid-template-columns: 1fr;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .about-stats {
        justify-content: center;
    }

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

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

/* ===========================
   PRECIOS SECTION
   =========================== */
.precios-section {
    background: var(--bg-dark);
}

.precios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.precio-category {
    background: var(--secondary-color);
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.precio-category:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.precio-category h3 {
    font-size: 1.8rem;
    letter-spacing: 3px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.precio-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.precio-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.precio-item:last-child {
    border-bottom: none;
}

.precio-label {
    color: var(--text-gray);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.precio-valor {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.precios-note {
    text-align: center;
    padding: 40px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.precios-note p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* ===========================
   CUSTOM CURSOR
   =========================== */
.custom-cursor,
.cursor-follower {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
}

.custom-cursor {
    background: var(--primary-color);
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
    mix-blend-mode: difference;
}

@media (max-width: 768px) {
    .custom-cursor,
    .cursor-follower {
        display: none;
    }
}
/* Mundoswap Section - Alternative Background */
.about-section-alt {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

/* Reverse content order (video left, text right) */
.about-content-reverse {
    grid-template-columns: 1.5fr 1fr;
    direction: ltr;
}

/* Video styling in about section */
.about-video video {
    width: 100%;
    height: auto;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow);
    border-radius: 4px;
}

/* Responsive adjustments for Mundoswap section */
@media (max-width: 968px) {
    .about-content-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .about-video {
        order: 1;
    }

    .about-text {
        order: 2;
    }
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-version {
        order: 2;
        font-size: 0.8rem;
    }

    .footer-bottom p:not(.footer-version) {
        order: 1;
    }
}
