* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: white;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.logo img {
    height: 100px;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a:hover {
    color: #ffd700;
}

.flags {
    display: flex;
    gap: 10px;
}

.flags img {
    height: 40px;
    width: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.flags img:hover {
    transform: scale(1.1);
}

/* Botón hamburguesa */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white; /* CAMBIO: de #333 a white */
    margin: 3px 0;
    transition: 0.3s;
}

/* Animación del botón hamburguesa */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/fondo.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding: 0 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    max-width: 800px;
    margin-left: 0;
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-text .golden {
    color: #D4AF37;
}

.hero-text .white {
    color: white;
}

.hero-underline {
    width: 200px;
    height: 4px;
    background-color: #D4AF37;
    margin: 20px 0;
}

/* Social Media Icons */
.social-icons {
    position: fixed;                          /* Posición fija en la pantalla */
    right: 0;                              /* A 20px del borde derecho */
    top: 50%;                                 /* Centrado verticalmente */
    transform: translateY(-50%);              /* Ajusta para que quede centrado */
    display: flex;
    flex-direction: column;                   /* Íconos en columna */
    gap: 15px;
    background: linear-gradient(135deg, #f6b73c 0%, #e89611 100%);
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 900;                            /* Se asegura de estar sobre todo */
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #B8860B;                            /* Color dorado para el ícono */
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}


/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 130px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        gap: 20px;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        color: white;
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li {
        padding: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .social-icons {
        right: 10px;
        gap: 10px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .flags {
        position: fixed;
        top: 15px;
        right: 60px;
        z-index: 1001;
    }
    .flags img {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .nav-container {
        padding: 0 10px;
    }

    .logo img {
        height: 35px;
    }

    .flags {
        right: 50px;
    }
    .nav-menu {
        top: 100px;
    }
}


/* Video Section */
.video-section {
    background-color: #0a0a0a;
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    max-width: 1200px;
    width: 100%;
    position: relative;
}

.video-logo {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding-left: 20px;
}

.video-logo img {
    height: 60px;
    margin-right: 15px;
}

.logo-text h3 {
    color: white;
    font-size: 28px;
    font-weight: bold;
    margin: 0;
}

.logo-text p {
    color: #ccc;
    font-size: 14px;
    margin: 5px 0 0 0;
    font-weight: 300;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border: 3px solid #333;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Video */
@media (max-width: 768px) {
    .video-section {
        padding: 60px 10px;
    }
    
    .video-logo {
        padding-left: 10px;
        margin-bottom: 30px;
    }
    
    .video-logo img {
        height: 40px;
    }
    
    .logo-text h3 {
        font-size: 20px;
    }
    
    .logo-text p {
        font-size: 12px;
    }
}


/* Nosotros Section */
.nosotros-section {
    background-color: #f8f8f8;
    padding: 80px 20px 0;
    position: relative;
}

.nosotros-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.nosotros-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.nosotros-left {
    flex: 1;
    max-width: 600px;
}

.nosotros-left h2 {
    font-size: 4rem;
    font-weight: 900;
    color: #000;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
}

.nosotros-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
    text-align: justify;
}

.nosotros-right {
    flex: 0 0 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.experience-number {
    font-size: 5rem;
    font-weight: 200;
    color: #000;
    line-height: 1;
    margin-bottom: 10px;
    -webkit-text-stroke: 2px #000;
    -webkit-text-fill-color: transparent;
}

.experience-label {
    font-size: 1.8rem;
    font-weight: 900;
    color: #000;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.arrows-decoration {
    width: 100%;
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding: 0;;
}

.arrows-decoration img {
    width: 100vw;
    height: 100px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 20px;
    display: block;
}

/* Responsive Design for Nosotros */
@media (max-width: 768px) {
    .nosotros-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .nosotros-left h2 {
        font-size: 2.5rem;
    }

    .nosotros-left p {
        font-size: 1rem;
        text-align: left;
    }

    .nosotros-right {
        flex: none;
        width: 100%;
    }

    .experience-number {
        font-size: 3.5rem;
    }

    .experience-label {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .nosotros-left h2 {
        font-size: 2rem;
    }

    .experience-number {
        font-size: 2.5rem;
    }

    .experience-label {
        font-size: 1rem;
    }
}


/* Servicios Section */
.servicios-section {
    background-color: #000;
    padding: 80px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.servicios-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.servicios-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.servicios-left {
    flex: 1;
    max-width: 500px;
}

.servicios-left h2 {
    font-size: 4rem;
    font-weight: 900;
    color: #D4AF37;
    margin: 0 0 40px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
}

.servicios-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.servicios-list li {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.4;
}

.servicios-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.servicios-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Responsive Design for Servicios */
@media (max-width: 768px) {
    .servicios-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .servicios-left {
        max-width: 100%;
    }

    .servicios-left h2 {
        font-size: 2.5rem;
    }

    .servicios-list li {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .servicios-right {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .servicios-left h2 {
        font-size: 2rem;
    }

    .servicios-list li {
        font-size: 1.1rem;
    }

    .servicios-section {
        padding: 60px 10px;
    }
}


/* SECCIÓN PRINCIPAL */
.proyectos-section {
    width: 100%;
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

/* Efectos de fondo animados */
.proyectos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    animation: backgroundPulse 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Título principal mejorado */
.section-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    color: #D4AF37;
    text-align: center;
    margin-bottom: 80px;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.8),
        0 0 30px rgba(212, 175, 55, 0.3);
    letter-spacing: 5px;
    position: relative;
    text-transform: uppercase;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    border-radius: 2px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
    border-radius: 1px;
}

/* Contenedor de carruseles */
.carruseles-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contenedor de cada carrusel */
.carousel-section {
    margin-bottom: 120px;
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.01) 100%);
    border-radius: 20px;
    padding: 40px 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.carousel-section:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

/* Flechas de navegación mejoradas */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(255, 215, 0, 0.8));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 25;
    color: #000;
    font-size: 1.8rem;
    font-weight: bold;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.carousel-nav:hover {
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
    border-color: rgba(212, 175, 55, 0.6);
}

.carousel-nav.prev {
    left: -15px;
}

.carousel-nav.next {
    right: -15px;
}

.carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

/* Título de cada carrusel */
.carousel-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    position: relative;
}

.carousel-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    border-radius: 2px;
}

/* Carrusel wrapper mejorado */
.carousel-wrapper {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    border-radius: 15px;
}

* Ajustes necesarios para el carrusel JavaScript */
.carousel-track {
    display: flex;
    gap: 25px;
    padding: 0 20px;
    animation: none !important; /* Desactivar animación CSS */
    cursor: grab;
    user-select: none;
    will-change: transform;
}

.carousel-track:active,
.carousel-track.dragging {
    cursor: grabbing;
}

/* Asegurar que los items no se deformen */
.carousel-item {
    flex: 0 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    pointer-events: auto;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    -webkit-user-drag: none;
}

.carousel-item img {
    pointer-events: none;
    -webkit-user-drag: none;
    -webkit-user-drag: none;
}

/* Items de películas mejorados */
.movie-item {
    width: 280px;
    height: 420px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.movie-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Items de canales de YouTube mejorados */
.channel-item {
    width: 350px;
    height: 220px;
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 50%, #1a1a1a 100%);
    border: 2px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.channel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
}

.channel-item:hover img {
    transform: scale(1.05);
}

.channel-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid rgba(212, 175, 55, 0.3);
    transition: border-color 0.3s ease;
}

.channel-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.channel-info {
    flex: 1;
}

.channel-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.channel-stats {
    font-size: 1rem;
    color: #bbb;
    margin-bottom: 10px;
}

.channel-description {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
}

/* Efectos hover mejorados para películas */
.movie-item:hover {
    transform: translateY(-15px) scale(1.08);
    box-shadow: 
        0 25px 50px rgba(212, 175, 55, 0.4),
        0 0 50px rgba(212, 175, 55, 0.2);
    z-index: 10;
}

.movie-item:hover img {
    transform: scale(1.15);
}

.movie-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.1) 0%,
        rgba(212, 175, 55, 0.3) 50%,
        rgba(255, 215, 0, 0.2) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.movie-item:hover::before {
    opacity: 1;
}

/* Efectos hover mejorados para canales */
.channel-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #D4AF37;
    box-shadow: 
        0 20px 40px rgba(212, 175, 55, 0.3),
        0 0 30px rgba(212, 175, 55, 0.2);
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 50%, #2a2a2a 100%);
}

.channel-item:hover .channel-name {
    color: #D4AF37;
}

.channel-item:hover .channel-avatar {
    border-color: #D4AF37;
}

/* Animación de scroll mejorada */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Gradientes laterales mejorados */
.carousel-wrapper::before,
.carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 15;
    pointer-events: none;
}

.carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, 
        rgba(10, 10, 10, 1) 0%, 
        rgba(10, 10, 10, 0.8) 50%, 
        transparent 100%);
}

.carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, 
        rgba(10, 10, 10, 1) 0%, 
        rgba(10, 10, 10, 0.8) 50%, 
        transparent 100%);
}

/* Responsive mejorado */
@media (max-width: 768px) {
    .proyectos-section {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 60px;
    }

    .carousel-section {
        margin-bottom: 80px;
        padding: 30px 15px;
    }

    .carousel-nav {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .carousel-nav.prev {
        left: -10px;
    }

    .carousel-nav.next {
        right: -10px;
    }

    .movie-item {
        width: 220px;
        height: 330px;
    }

    .channel-item {
        width: 280px;
        height: 180px;
        padding: 20px;
    }

    .channel-avatar {
        width: 60px;
        height: 60px;
    }

    .channel-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .carruseles-container {
        padding: 0 10px;
    }

    .carousel-track {
        gap: 15px;
        padding: 0 15px;
    }

    .movie-item {
        width: 180px;
        height: 270px;
    }

    .channel-item {
        width: 250px;
        height: 160px;
        padding: 15px;
        gap: 15px;
    }
}




.academia-section {
    background-color: #000000;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
}

.academia-content {
    display: flex;
    width: 100%;
    height: 100vh;
}

.academia-text-content {
    flex: 1;
    background-color: #f5f5f5;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.academia-main-title {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 0.8;
}

.academia-course-block {
    margin-bottom: 50px;
}

.academia-course-title {
    font-family: 'Arial', sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #D4AF37;
    margin-bottom: 20px;
}

.academia-course-description {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #000000;
    font-weight: 400;
    text-align: justify;
    max-width: 500px;
}

.academia-image-container {
    flex: 1;
    background-color: #000000;
    position: relative;
    overflow: hidden;
}

.academia-course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .academia-content {
        flex-direction: column;
        height: auto;
    }

    .academia-text-content {
        padding: 40px 30px;
    }

    .academia-main-title {
        font-size: 3rem;
        text-align: center;
        margin-bottom: 40px;
    }

    .academia-course-title {
        font-size: 1.8rem;
    }

    .academia-course-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .academia-image-container {
        height: 50vh;
    }
}

@media (max-width: 480px) {
    .academia-main-title {
        font-size: 2.5rem;
    }

    .academia-text-content {
        padding: 30px 20px;
    }

    .academia-course-title {
        font-size: 1.5rem;
    }

    .academia-course-block {
        margin-bottom: 30px;
    }
}


.doblaje-contact-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.doblaje-contact-section {
    background-color: #000000;
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.doblaje-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%);
    background-size: 50px 50px;
    background-position: 0 0, 0 25px, 25px -25px, -25px 0px;
    opacity: 0.3;
    pointer-events: none;
}

.doblaje-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.doblaje-main-title {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.doblaje-main-title .doblaje-highlight {
    color: transparent;
    font-weight: 900;
    -webkit-text-stroke: 2px #D4AF37;
    -webkit-text-stroke: 2px #D4AF37;
}

.doblaje-subtitle {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 60px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.doblaje-info-text {
    font-family: 'Arial', sans-serif;
    font-size: 1.8rem;
    color: #D4AF37;
    margin-bottom: 30px;
    font-weight: 400;
}

.doblaje-cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #D4AF37, #F4E85A);
    color: #ffffff;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 80px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.doblaje-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    background: linear-gradient(45deg, #F4E85A, #D4AF37);
}

.doblaje-contact-info {
    margin-bottom: 50px;
}

.doblaje-address {
    font-family: 'Arial', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 400;
}

.doblaje-phone {
    font-family: 'Arial', sans-serif;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 400;
}

.doblaje-email-info {
    font-family: 'Arial', sans-serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 50px;
    font-weight: 400;
}

.doblaje-footer-text {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .doblaje-main-title,
    .doblaje-subtitle {
        font-size: 2.5rem;
    }

    .doblaje-info-text {
        font-size: 1.4rem;
    }

    .doblaje-cta-button {
        font-size: 1.2rem;
        padding: 15px 35px;
    }

    .doblaje-address,
    .doblaje-phone {
        font-size: 1.1rem;
    }

    .doblaje-email-info {
        font-size: 1rem;
    }

    .doblaje-footer-text {
        font-size: 0.9rem;
        bottom: 20px;
        right: 20px;
    }

    .doblaje-contact-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .doblaje-main-title,
    .doblaje-subtitle {
        font-size: 2rem;
    }

    .doblaje-info-text {
        font-size: 1.2rem;
    }

    .doblaje-cta-button {
        font-size: 1rem;
        padding: 12px 25px;
    }

    .doblaje-address,
    .doblaje-phone,
    .doblaje-email-info {
        font-size: 0.9rem;
    }

    .doblaje-contact-container {
        padding: 0 15px;
    }
    .doblaje-footer-text {
        font-size: 0.8rem;
        bottom: 15px;
        right: 15px;
    }
}


