/* Fuentes personalizadas - Agregar al inicio del archivo */
@font-face {
    font-family: 'Roca';
    src: url('../fonts/roca-one-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roca';
    src: url('../fonts/roca-one-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roca';
    src: url('../fonts/roca-one-black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


/* Aplicar las fuentes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Inter', sans-serif;
    /* Cambiar aquí */
}

body {
    background-color: #111;
    color: #fff;
    overflow-x: hidden;
    /* font-family: 'Poppins', 'Inter', sans-serif; */
    /* Y aquí */
}

h1,
h2,
h3,
h4 {
    font-family: 'Roca' !important;
}

p,
a,
button,
.btn,
.form-submit,
input,
span,
textarea {
    font-family: 'Poppins' !important;
     font-weight: 400 !important;
}

/* H1 – Roca Heavy 48px */
h1 {
    font-weight: 900;
    /* Heavy */
    /* font-size: clamp(32px, 5vw, 48px); */
    line-height: 1.1;
}

/* H2 – Roca Bold 32px */
h2,
.section-title,
.section-title-service,
.europa-logo-produccion {
    font-weight: 700;
    /* Bold */
    /* font-size: clamp(24px, 3.2vw, 32px); */
    line-height: 1.2;
}

/* H3 – Roca Medium (≈Regular) 24px */
h3 {
    font-weight: 400;
    /* Mapeo Medium -> Regular por disponibilidad */
    /* font-size: clamp(20px, 2.6vw, 24px); */
}

/* H4 – Roca Medium (≈Regular) 20px */
h4 {
    font-weight: 400;
    /* Mapeo Medium -> Regular por disponibilidad */
    font-size: 20px;
}

/* Párrafos – Poppins Regular 16px */
p,
.section-subtitle {
    font-weight: 400;
    font-size: 16px;
}

/* Subtítulos / Links – Poppins Medium 14px */
.subtitle,
a,
.footer-link,
.menu-item {
    font-weight: 500;
    font-size: 14px;
}

/* Botones – Poppins Medium 14px */
.btn,
.form-submit {
    font-weight: 500;
    font-size: 14px;
}


::placeholder {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 14px;
}

/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #111;
    color: #fff;
    overflow-x: hidden;
} */



.section {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 10% 60px;
    /* Removido z-index que causaba conflictos */
}

.navigation {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 20px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background-color: white;
    transform: scale(1.3);
}




.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #f23b3d;
    /* #f23b3d; /*#ff3366;*/
    color: white;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.btn:hover {
    background-color: #ff6699;
    transform: translateY(-5px);
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.2;
}


@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%, 100% 0%, 50% 100%;
    }

    50% {
        background-position: 100% 50%, 0% 100%, 0% 0%;
    }
}

/* header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 9px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(51, 17, 34, 0.95));
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    letter-spacing: 2px;
}

.logo-img {
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.logo-img img {
    height: auto;
    transition: all 0.3s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 2px;
    opacity: 0.8;
    color: #ffb1be;
}

.menu-button {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.menu-button span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: white;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.menu-button span:nth-child(1) {
    top: 0px;
}

.menu-button span:nth-child(2) {
    top: 9px;
}

.menu-button span:nth-child(3) {
    top: 18px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .header {
        padding: 8px 6%;
    }

    .logo-img img {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 6px 4%;
    }

    .logo-img {
        margin-right: 10px;
    }

    .logo-img img {
        width: 80px;
    }

    .menu-button {
        width: 28px;
        height: 18px;
    }

    .menu-button span:nth-child(2) {
        top: 8px;
    }

    .menu-button span:nth-child(3) {
        top: 16px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 5px 3%;
    }

    .logo-img img {
        width: 60px;
    }

    .menu-button {
        width: 25px;
        height: 16px;
    }

    .menu-button span:nth-child(2) {
        top: 7px;
    }

    .menu-button span:nth-child(3) {
        top: 14px;
    }
}

@media (max-width: 360px) {
    .header {
        padding: 4px 2%;
    }

    .logo-img img {
        width: 50px;
    }

    .menu-button {
        width: 22px;
        height: 14px;
    }

    .menu-button span:nth-child(2) {
        top: 6px;
    }

    .menu-button span:nth-child(3) {
        top: 12px;
    }
}

/* header */


/* section 0 */

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 60px;
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    min-height: 100vh;
}

.hero-content {

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding-left: 8vw;
}

.hero-title {

    font-size: 48px;
    font-weight: 900;
      /* font-weight: heavy; */
    /* font-size: 90px;
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 30px;
    overflow: hidden;
    position: relative;
    z-index: 10;
    font-family: 'Roca'; */
}

.hero-text {
    font-size: 16px;
    max-width: 400px;
    line-height: 1.5;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
    font-family: 'Poppins' !important;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* background: #ffb1be; */
    background: #ffa8b7;
    background-size: 100% 100%;
    animation: gradientShift 8s ease-in-out infinite;
}


.hero-image-container {
    display: flex;
    align-items: center;
    justify-content: right;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    /* max-width: 500px; */
    height: auto;
}

.hero-image:hover {
    transform: scale(1.05);
}


.hero-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #f23b3d;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(15deg);
    box-shadow: 0 4px 15px rgba(242, 59, 61, 0.4);
    animation: bounce 2s infinite;
    z-index: 15;
}


@media (max-width: 1024px) {
    .hero-title {
        font-size: 60px;
    }

    .hero-text {
        font-size: 18px;
        max-width: 400px;
    }

    .hero-image {
        width: 70%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: auto;
        padding: 40px 20px;
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-title {
        font-size: 50px;
        margin-bottom: 20px;
    }

    .hero-text {
        font-size: 16px;
        max-width: 90%;
        margin-bottom: 30px;
    }

    .hero-image-container {
        justify-content: center;
    }

    .hero-image {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-text {
        font-size: 14px;
    }

    .scroll-indicator {
        display: none;
    }
}

/* section 0 */


/* servicios */
.service-section {
    padding: 80px 10% 60px;
    position: relative;
}

.service-section::before,
.service-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

.service-section::before {
    left: 0;
}

.service-section::after {
    right: 0;
}

.section-title-service {
    font-size: 32px;
    font-weight: bold;
    color: #ffb1be;
    text-align: center;
    /* margin-bottom: 50px; */
    text-transform: uppercase;
    /* font-family: 'Roca' !important; */
}

.services-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    gap: 40px;
}

.services-container::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -20px;
    bottom: 0;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(-50%);
    z-index: 1;
}

.services-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.service-column {
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    width: 45%;
    position: relative;
}

.service-column:hover {
    transform: none;
    box-shadow: none;
}

.service-column-title {
    font-size:24px;
    color: #ffb1be;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-family: 'Roca' !important;
}

.service-list {
    list-style-type: disc;
    padding-left: 25px;
}

.service-item {
    display: list-item;
    color: white;
    font-weight: bold;
    font-size: clamp(14px, 2.5vw, 18px);
    margin-bottom: 12px;
    text-transform: uppercase;
    line-height: 1.3;
    font-family: 'Poppins' !important;
}

.service-bullet {
    display: none;
}

.service-text {
    font-size: clamp(14px, 2.5vw, 18px);
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .service-section {
        padding: 60px 6% 50px;
    }

    .services-container {
        gap: 30px;
    }

    .section-title-service {
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .service-section {
        padding: 50px 4% 40px;
    }

    .services-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 10px;
    }

    .services-container::before,
    .services-container::after {
        display: none;
    }

    .service-column {
        width: 100%;
    }

    .service-column-title {
        text-align: center;
        margin-bottom: 25px;
    }

    .section-title-service {
        margin-bottom: 35px;
    }

    .service-list {
        padding-left: 20px;
    }

    .service-item {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .service-section {
        padding: 40px 3% 30px;
    }

    .services-container {
        gap: 30px;
    }

    .section-title-service {
        margin-bottom: 25px;
    }

    .service-column-title {
        margin-bottom: 20px;
    }

    .service-list {
        padding-left: 15px;
    }

    .service-item {
        margin-bottom: 8px;
    }
}

@media (max-width: 360px) {
    .service-section {
        padding: 30px 2% 25px;
    }

    .services-container {
        gap: 25px;
        padding: 0 5px;
    }

    .service-list {
        padding-left: 12px;
    }
}

/* servicios */


.portfolio-background {
    background: linear-gradient(45deg, #1a2d0b, #2d1a0b);
    background-image: url('../images/fondo-nuestro-trabajo.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

.portfolio-item {
    position: relative;
    /*height: 300px;*/
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: fill;
    transition: transform 0.5s ease;
    /*
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;*/
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-title {
    /* font-size: 20px;
    margin-bottom: 10px; */

    font-size: 20px;
    font-weight: 400;
    font-family: 'Roca' !important;
}

.portfolio-category {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.client-logo-background {
    background: linear-gradient(45deg, #2d0b1a, #0b2d2d);
    background-image: url('../images/fondo-confian-en-nosotros.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.client-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 50px;
    gap: 30px;
    position: relative;
    z-index: 10;
    /* Asegurar que esté por encima del parallax */
}

.client-logo {
    height: 50px;
    filter: grayscale(100%) brightness(200%);
    opacity: 0.7;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    position: relative;
    z-index: 10;
}

.client-logo i {
    font-size: 40px;
    color: #ff3366;
}

.client-logo:hover {
    filter: grayscale(0%) brightness(100%);
    opacity: 1;
    transform: translateY(-5px);
}



.contact-background {
    background: linear-gradient(45deg, #1a2d0b, #2d1a0b);
    background-image: url('../images/fondo-formulario.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-title {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}



.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    padding-bottom: 30px;
    position: relative;
    z-index: 10;
}



.form-control {
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 5px;

}

.form-control:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
}

.form-control.message {
    grid-column: span 2;
    height: 150px;
    resize: none;
    margin-bottom: 20px;
}

.form-submit {
    grid-column: span 2;
    background-color: #ff3366;
    color: white;
    border: 2px solid white;
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
    align-items: center;
    justify-self: center;
}


.form-submit:hover {
    background-color: #ff6699;
}

.footer {
    background-color: #000;
    padding: 50px 10%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 10;
}

.footer-left {
    flex: 1 1 200px;
}

.footer-center {
    flex: 0 0 510px;
    /* espacio entre columnas, ajustable */
}

.footer-right {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.footer-logo img {
    max-width: 70px;
}

.footer-slogan {
    padding-top: 6px;
    font-size: 15px;
    font-weight: normal;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
}

.footer-link {
    margin: 10px 15px 0 0;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 20px;
}

.footer-link:hover {
    color: white;
}

.footer-contact {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.8;
}

.contact-item {
    margin-bottom: 8px;
}

.contact-item i {
    margin-right: 10px;
}

/* 💻 Solo ajuste para 1366x768 */
@media (max-width: 1366px) and (min-width: 769px) {
    .footer-center {
        flex: 0 0 300px; /* Reduce solo el espacio central */
    }
}

/* 💻 Para resoluciones muy altas */
@media (min-width: 1920px) {
    .footer-center {
        flex: 0 0 400px; /* Menos espacio en pantallas muy grandes */
    }
}

/* 📱 Responsive para móviles */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        padding: 30px 5%;
    }
    
    .footer-left,
    .footer-center,
    .footer-right {
        flex: 1 1 100%;
    }
    
    .footer-links {
        justify-content: flex-start;
    }
}





.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    animation: fadeInOut 2s infinite;
    z-index: 10;
}

.scroll-text {
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 2px;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.animated-text {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.animated-text span {
    display: block;
    transform: translateY(100%);
    animation: textReveal 0.8s ease forwards;
}

@keyframes textReveal {
    to {
        transform: translateY(0);
    }
}

/* Menu overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffb1be;
    /*#111;*/
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.menu-items {
    text-align: center;
}

.menu-item {
    font-size: 50px;
    font-weight: 700;
    margin: 20px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.menu-item:hover {
    color: #f23b3d;
    /*#ff3366;*/
    opacity: 1;
    transform: scale(1.1);
}

.cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    pointer-events: none;
    z-index: 1001;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease;
    mix-blend-mode: difference;
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: white;
    pointer-events: none;
    z-index: 1002;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

@media (max-width: 1024px) {

    .section-title {
        font-size: 40px;
    }

    .services-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .services-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .navigation {
        display: none;
    }

    .menu-item {
        font-size: 30px;
    }

    .client-logo {
        min-width: 120px;
        height: 40px;
        padding: 10px;
    }

    .section {
        padding: 100px 5% 40px;
    }

    .logo-img {
        width: 35px;
        height: 35px;
        margin-right: 10px;
    }
}

/* seccion video  */
.seccion-europa {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.europa-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/fondo-video.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.europa-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.europa-logo-produccion {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #ffb1be;
    font-size: clamp(18px, 4vw, 32px);
    font-weight: bold;
    z-index: 4;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-family: 'Roca' !important;
}

.europa-titulo {
    position: relative;
    z-index: 3;
    color: white;
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    font-family: 'Roca' !important;
}

/* Contenedor responsivo para video con aspect ratio 16:9 */
.europa-video-container {
    position: relative;
    z-index: 3;
    width: min(90vw, 800px);
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    border: 3px solid rgba(255, 255, 255, 0.1);
    margin: 0 auto;
}

.europa-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.europa-footer {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 4;
}

.europa-marca-agua {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 4;
}

.europa-marca-agua .logo-enjoy-img {
    height: clamp(30px, 5vw, 50px);
    opacity: 0.8;
}

.europa-footer .logo-enjoy-img {
    height: clamp(40px, 6vw, 60px);
}

/* Media queries para ajustes específicos */
@media (max-width: 768px) {
    .seccion-europa {
        min-height: 100vh;
        padding: 15px;
    }
    
    .europa-logo-produccion {
        top: 15px;
        left: 15px;
        font-size: clamp(16px, 5vw, 24px);
    }
    
    .europa-video-container {
        width: 95vw;
        border-radius: 10px;
        border: 2px solid rgba(255, 255, 255, 0.1);
    }
    
    .europa-footer {
        bottom: 15px;
        left: 15px;
        right: 15px;
        flex-direction: column;
        gap: 10px;
    }
    
    .europa-marca-agua {
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .seccion-europa {
        padding: 10px;
    }
    
    .europa-logo-produccion {
        top: 10px;
        left: 10px;
    }
    
    .europa-video-container {
        width: 98vw;
        border-radius: 8px;
    }
    
    .europa-footer {
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
    
    .europa-marca-agua {
        bottom: 10px;
        right: 10px;
    }
}

/* Para pantallas muy grandes */
@media (min-width: 1400px) {
    .europa-video-container {
        width: min(70vw, 1000px);
    }
}

.logo-ue-img {
    width: 50px;
    height: auto;
}

.logo-ue-text {
    color: #003399;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.europa-logo-enjoy {
    background: rgba(255, 255, 255, 0.95);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.logo-enjoy-img {
    width: 80px;
    height: auto;
}

.europa-marca-agua {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    /* Usar los mismos estilos que europa-logo-enjoy */
    /* background: rgba(255, 255, 255, 0.95); */
    padding: 10px;

    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.europa-marca-agua img {
    width: 200px;
    height: auto;
}


/* Responsive Tablets */
@media (max-width: 768px) {
    .seccion-europa {
        min-height: 600px;
        padding: 20px 0;

        .europa-marca-agua img {
            /* width: 100px; */
            width: 180px;
        }
    }

    .europa-logo-produccion {
        top: 5vh;
        left: 20px;
        font-size: 24px;
    }

    .europa-video-container {
        width: 90vw;
        height: 50vw;
        max-height: 350px;
        border-radius: 10px;
    }

    .europa-footer {
        bottom: 20px;
        left: 20px;
        right: 20px;
        justify-content: flex-end;
    }

    .logo-enjoy-img {
        width: 70px;
    }

    .europa-marca-agua {
        bottom: 20px;
        left: 20px;
        transform: none;
    }

    .europa-marca-agua img {
        width: 150px;
    }
}

/* Responsive Mobile */
@media (max-width: 480px) {
    .seccion-europa {
        min-height: 500px;
        padding: 15px 0;
    }

    .europa-logo-produccion {
        top: 20px;
        left: 15px;
        font-size: 18px;
    }

    .europa-video-container {
        width: 95vw;
        height: 55vw;
        max-height: 280px;
        border-radius: 8px;
        border-width: 2px;
    }

    .europa-footer {
        bottom: 15px;
        left: 15px;
        right: 15px;
        justify-content: flex-end;
    }

    .europa-logo-enjoy {
        padding: 8px;
    }

    .logo-enjoy-img {
        width: 60px;
    }

    .europa-marca-agua {
        bottom: 15px;
        left: 15px;
        transform: none;
        padding: 8px;
    }

    .europa-marca-agua img {
        width: 120px;
    }
}

/* Responsive Extra Small */
@media (max-width: 320px) {
    .seccion-europa {
        min-height: 450px;
    }

    .europa-logo-produccion {
        font-size: 16px;
        top: 15px;
        left: 10px;
    }

    .europa-video-container {
        width: 98vw;
        height: 60vw;
        max-height: 240px;
    }

    .europa-footer {
        bottom: 10px;
        left: 10px;
        right: 10px;
        justify-content: flex-end;
    }

    .logo-enjoy-img {
        width: 50px;
    }

    .europa-marca-agua {
        bottom: 10px;
        left: 10px;
        transform: none;
    }
}

/* seccion video  */

.bewe-widget {
  background-color: #fff0 !important;
  color: #000 !important;
}

.bewe-widget #bewe-lead form.bewe-form .bewe-input {
      outline: none;
    background-color: rgba(255, 255, 255, 0.1) !important;
}

/* /////// */
