.bg-green{
    background-color: #198754;
}
.bg-red{
    background-color: #dc3545;;
}
.bg-gunblackmetal{
    background-color: #333;
}
/* Custom CSS for Palmera Multicultural */
    @font-face{
        font-family:'Kento';
        src:url('../font/Kento-Regular.woff2') format('woff2'),
        url('../font/Kento-Regular.woff') format('woff'),
        url('../font/Kento-Regular.ttf') format('truetype');
        font-weight:400;
        font-style:normal;
        font-display:swap
    }
    @font-face{font-family:'Kento';
        src:url('../font/Kento-Bold.woff2') format('woff2'),
            url('../font/Kento-Bold.woff') format('woff'),
            url('../font/Kento-Bold.ttf') format('truetype');
        font-weight:700;
        font-style:normal;
        font-display:swap
    }
    :root{
        --font-primary:'Kento','Montserrat','Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
        --font-secondary:'Lato','Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
        --bg-color:#FCFBFB;
        --text-color:#2F3A4A
    }
/* Global Styles */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #0dcaf0;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --font-family: 'Lato', sans-serif;
}
.bolder{
    font-weight: 700;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    scroll-behavior: smooth;
}
h1,h2,h3{
font-family: 'Kento';
}
h1{
/* WE MOVE MULTICULTURAL AUDIENCES to action */
font-weight: 300;
font-size: 30px;
line-height: 38px;
align-items: center;
}
/* Hero Header Section */
.hero-thanks-section{
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}
.hero-header-section{
    width: 100%;
    height: 100vh;
    background-image: url('../img/ReelMulticulturalV3 1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

/* Video de fondo para hero header */
.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    background-image: url('../img/ReelMulticulturalV3 1.jpg');
    background-size: cover;
    background-position: center;
}

.hero-logo-container {
    text-align: center;
    z-index: 10;
    position: relative;
}

/* Asegurar que el contenido esté por encima del video */
.hero-header-section .row {
    position: relative;
    z-index: 10;
}

.hero-logo {
    width: 250px;
    /*width: 100%;*/
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

/* Responsive adjustments for hero header */
@media (max-width: 768px) {
    .hero-header-section {
        background-image: url('../img/bg-mv.png');
        padding-top: 40px;
    }
    
    .hero-logo {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .hero-header-section {
        padding-top: 30px;
    }
    .hero-header-section{
        height: clamp(20rem, 6rem + 70vw, 90rem) !important;
    }
    .hero-logo {
        max-width: 120px;
    }
}

/* Frame18 Section Styles */
.frame18-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.frame18-section .container {
    height: 100%;
}

.frame18-section .row {
    min-height: 60vh;
}

.frame18-section img {
    max-width: 100%;
    height: auto;
}

.frame18-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.frame18-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Responsive adjustments for Frame18 section */
@media (max-width: 768px) {
    .frame18-section {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .frame18-section .row {
        min-height: auto;
    }
    
    .frame18-section .col-6 {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .frame18-section h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .frame18-section p {
        text-align: center;
    }
}
.blanco{
    color:white;
}
/* Marquesina de texto */
.marquee-container {
    width: 100%;
    overflow: hidden;
    /*background-color: #f8f9fa;*/
    padding: 20px 0;
    white-space: nowrap;
    position: relative;
}

.marquee-text {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    animation: marquee 20s linear infinite;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Animación de marquesina de derecha a izquierda */
@keyframes marquee {
    0% {
        transform: translateX(50%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pausar animación al hacer hover */
/*.marquee-container:hover .marquee-text {
    animation-play-state: paused;
}*/

/* Responsive adjustments para marquesina */
@media (max-width: 768px) {
    .marquee-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .marquee-text {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
}

/* Marquesina de Video */
.marquee-video-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: auto;
    margin: 0;
    padding: 0;
}

.marquee-video {
    width: 100%;
    height: 40px;
    object-fit: cover;
    object-position: center;
}

/* Lottie Full Width Component */
.lottie-full-width {
    width: 100% !important;
    height: 60px !important;
    aspect-ratio: 16/1 !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}



/* Services Carousel Styles */
.services-carousel {
    padding: 2rem 0;
}

.service-card {
    padding:20px;
    box-sizing: border-box;

    height: 334px;

border: 1px solid rgba(253, 113, 139, 0.3);
border-radius: 10px;

}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-title {
    font-family: 'Kento';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #000000;
}

.service-text {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    text-align: center;
    color: #000000;
}
.services-carousel .carousel-control-prev-icon, .services-carousel .carousel-control-next-icon {
    width: 15px;
    height: 31px;
}
.carousel-control-prev-icon{
    background-image: url("../img/arrow-n.png");
}
.carousel-control-prev-icon:hover{
    background-image: url("../img/arrow-h.png");
}

.carousel-control-next-icon{
    background-image: url("../img/arrow-n.png");
    transform: rotate(180deg);
}
.carousel-control-next-icon:hover{
    background-image: url("../img/arrow-h.png");
}

/* Carousel Controls Styling */
.services-carousel .carousel-control-prev,
.services-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
}

.services-carousel .carousel-control-prev {
    left: -12px;
}

.services-carousel .carousel-control-next {
    right: -12px;
}

/* Carousel Indicators */
.services-carousel .carousel-indicators {
    bottom: -50px;
}

.services-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    margin: 0 5px;
    background: #FD718B;
}

.services-carousel .carousel-indicators button.active {
    background-color: white;
    border: 1px solid #FD718B;
}

/* Responsive adjustments para services carousel */
@media (max-width: 992px) {
    .service-card {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        padding: 15px;
    }
    
    .service-icon img {
        width: 30px;
        height: 30px;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .services-carousel .carousel-control-prev,
    .services-carousel .carousel-control-next {
        display: none;
    }
    
    /* Mostrar controles específicamente para el carrusel móvil */
    #servicesCarouselMov .carousel-control-prev,
    #servicesCarouselMov .carousel-control-next {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    /* Mostrar controles específicamente para el carrusel de clientes móvil */
    #ClientsCarousel .carousel-control-prev,
    #ClientsCarousel .carousel-control-next {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
}


/* Navigation Styles */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(13, 110, 253, 0.95) !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    position: relative;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: #fff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    background-size: cover;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    animation: fadeInUp 1s ease-out;
}

.hero-section p {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-section .btn {
    animation: fadeInUp 1s ease-out 0.4s both;
    transition: all 0.3s ease;
}

.hero-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Card Styles */
.card {
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.card-body {
    position: relative;
}

/* Section Spacing */
section {
    padding: 5rem 0;
}

/* Background Gradients */
.bg-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, #764ba2 100%);
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Button Styles */
.btn {
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

/* Form Styles */
.form-control {
    box-sizing: border-box;
    background: #FFFFFF;
    border: 1px solid rgba(253, 113, 139, 0.3);
    border-radius: 10px;
    height: 50px;
    width: 500px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    transform: translateY(-2px);
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

/* Footer Styles */
footer {
    background: linear-gradient(105deg, #EC798C 2.4%, #0C5394 98.17%);
    /*background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);*/
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Scroll Animation */
.scroll-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animation.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--success-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.border-radius-custom {
    border-radius: 20px;
}

/* Image Styles */
img {
    max-width: 100%;
    height: auto;
}

.img-fluid {
    transition: transform 0.3s ease;
}

.img-fluid:hover {
    transform: scale(1.02);
}

/* Icon Styles */
.bi {
    vertical-align: -0.125em;
}
.services-link{
    box-sizing: border-box;
    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 18px 27px;
    border: 1px solid #FD718B;
    border-radius: 10px;
    font-family: 'Kento';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #FD718B;
    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
    text-decoration: none;
}
.services-link:hover{
    color:white;
    background-color: #FD718B;
}

/* Service Icons */
.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.service-icon:hover {
    transform: scale(1.5    );
}

/* Contact Icons */
.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-icon:hover {
    transform: scale(1.1);
}

/* Social Media Links */
.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}
.proven-impact-video{
    width: 100%;
    max-width: 639px;
    border-radius: 15px;
    object-fit: cover;
}

/* Stories Slider Styles */
.stories-slider {
    margin: 3rem 0;
}

.story-slide {
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.story-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
    z-index: 1;
}

.story-slide.zoom-active::before {
    transform: scale(1.1);
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 2;
}

.story-content {
    max-width: 600px;
    text-align: center;
    color: white;
}

.story-title {
    font-family: 'Kento', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.story-text {
    font-family: 'Lato', sans-serif;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);

font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 25px;
display: flex;
align-items: center;
text-align: center;
color: #FEFEFE;
text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);


}

.form-btn {
    border: 1px solid #FEFEFE;
    color: #FEFEFE;
    font-family: 'Kento', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 12px 30px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    background-color: transparent;
}
.pe-img{
    background-image: url(../img/pe-img.svg);
    background-position: top left;
    background-size:auto ;
    background-repeat: no-repeat;
}
.form-btn:hover {
    background-color: #FD718B;
    color: #FEFEFE;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 113, 139, 0.4);
}
.form-check .form-check-input {
    float: unset;
}
.legal-link{
    color: #FEFEFE;
}
.legal-link:hover{
    color: #FD718B;
}

.story-btn {
    border: 1px solid #FD718B;
    color: #FD718B;
    font-family: 'Kento', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 12px 30px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    background-color: transparent;
}

.story-btn:hover {
    background-color: #FD718B;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 113, 139, 0.4);
}

/* Stories Slider Controls */
.stories-slider .carousel-control-prev,
.stories-slider .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    /*backdrop-filter: blur(10px);*/
    z-index: 10;
    /*background-color: rgba(255, 255, 255, 0.2);*/
}

.stories-slider .carousel-control-prev {
    left: 20px;
}

.stories-slider .carousel-control-next {
    right: 20px;
}

.stories-slider .carousel-control-prev-icon,
.stories-slider .carousel-control-next-icon {
    width: 15px;
    height: 31px;
}

.stories-slider .carousel-indicators {
    bottom: 20px;
    z-index: 10;
}

.stories-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
}

.stories-slider .carousel-indicators button.active {
    background-color: #FD718B;
}

/* Responsive adjustments for stories slider */
@media (max-width: 768px) {
    .story-slide {
        height: 500px;
    }
    
    .story-title {
        font-size: 2rem;
    }
    
    .story-text {
        font-size: 1rem;
    }
    
    .story-content {
        max-width: 90%;
        padding: 1rem;
    }
    
    .stories-slider .carousel-control-prev,
    .stories-slider .carousel-control-next {
        width: 40px;
        height: 40px;
        z-index: 10;
    }
    
    .stories-slider .carousel-control-prev {
        left: 10px;
    }
    
    .stories-slider .carousel-control-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .story-slide {
        height: 400px;
    }
    
    .story-title {
        font-size: 1.5rem;
    }
    
    .story-text {
        font-size: 0.9rem;
    }
    
    .story-btn {
        font-size: 1rem;
        padding: 10px 25px;
    }
}

.bg-footer {
    /*background-image: url(https://res.cloudinary.com/dembh31ac/image/upload/v1728772521/pm/multicultural/footer_qhg8ac.webp);*/
    background: linear-gradient(105deg, #EC798C 2.4%, #0C5394 98.17%);
    background-position: top;
    background-size: cover;
}

/* Combinación de ambas clases para mostrar la imagen pe-img sobre el gradiente del footer */
.bg-footer.pe-img {
    background: 
        url(../img/pe-img.svg),
        linear-gradient(105deg, #EC798C 2.4%, #0C5394 98.17%);
    background-position: 
        top left,
        top;
    background-size: 
        auto,
        cover;
    background-repeat: 
        no-repeat,
        no-repeat;
}

/* Responsive adjustments para marquesina de video */
@media (max-width: 768px) {
    .marquee-video {
        height: 20px;
    }
}

@media (max-width: 480px) {
    
}

@media (max-width: 768px) {
    .nomargin{
        margin-left: 0;
        margin-right: 0
    }
    .nopadding{
        padding-left: 0;
        padding-right: 0;
    }
    .story-slide {
        border-radius: 0px;
    }
    .story-overlay {
        padding: 0px;
    }
    
    .services-carousel {
        padding: 1rem 0;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-title {
        font-size: 1.4rem;
    }
    
    .service-text {
        font-size: 0.95rem;
    }
    .proven-impact-video {
        width: 100%;
        height: auto!important;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .form-control {
        width: 100%;
    }
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        padding: 12px;
    }
    
    .service-icon img {
        width: 26px;
        height: 26px;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-text {
        font-size: 0.9rem;
    }

    .proven-impact-video {
        width: 100%;
        height: auto!important;
        border-radius: 15px;
    }

}