﻿root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Montserrat", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #222222; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #17172a; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #3251AC; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #ffffff; /* The default color of the main navmenu links */
    --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #01433c; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #3251ac; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f2f9f9;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

.accent-background {
    --background-color: #ffffff; /*#edb621*/
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --accent-color: #ffffff;
    --surface-color: #00b6a1;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}


body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}


    a:hover {
        color: color-mix(in srgb, var(--accent-color), transparent 25%);
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: #3251AC;
    background-color: rgba(50, 81, 172, 1);
    transition: background-color 0.3s ease-in-out;
    --heading-color: #ffffff;
    color: var(--default-color);
    transition: all 0.5s;
    z-index: 997;
    background-color: var(--background-color);
}

    .header.scrolled {
        background-color: rgba(50, 81, 172, 0.9);
    }

    .header .topbar {
        background-color: #F5F5F5;
        height: 40px;
        padding: 0;
        font-size: 14px;
        transition: all 0.5s;
    }

        .header .topbar .contact-info i {
            font-style: normal;
            color: #3251AC;
        }

            .header .topbar .contact-info i a,
            .header .topbar .contact-info i span {
                padding-left: 5px;
                color: #3251AC;
                FONT-WEIGHT: BOLD;
            }

@media (max-width: 575px) {

    .header .topbar .contact-info i a,
    .header .topbar .contact-info i span {
        font-size: 13px;
    }
}

.header .topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
}

    .header .topbar .contact-info i a:hover {
        color: var(--contrast-color);
        text-decoration: underline;
    }

.header .topbar .social-links a {
    color: color-mix(in srgb, #3251AC, transparent 40%);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}

    .header .topbar .social-links a:hover {
        color: var(--contrast-color);
    }

.header .branding {
    min-height: 60px;
    padding: 11px 0;
}

.header .logo {
    line-height: 1;
}

    .header .logo img {
        max-height: 80px;
        margin-right: 8px;
    }

    .header .logo h1 {
        font-size: 30px;
        margin: 0;
        font-weight: 700;
        color: var(--heading-color);
    }

    .header .logo span {
        font-size: 32px;
        margin-left: 2px;
        color: var(--nav-hover-color);
    }

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

#countdown-section {
    background-color: #ffffff;
    border-top: 3px solid #3251AC;
  /*  border-bottom: 3px solid #3251AC;*/
    transition: all 0.3s ease-in-out;
}

    #countdown-section:hover {
        background-color: #f5f9ff;
    }

.countdown-label {
    font-family: 'Montserrat', sans-serif;
    color: #17172a;
    font-size: 2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.countdown-number {
    font-size: 4rem;
    font-weight: 800;
    color: #3251AC;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#countdown-section:hover .countdown-number {
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(50, 81, 172, 0.3);
}

.countdown-text {
    font-size: 1rem;
    color: #444;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

        .navmenu ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navmenu li {
            position: relative;
        }

        .navmenu > ul > li {
            white-space: nowrap;
            padding: 15px 14px;
        }

            .navmenu > ul > li:last-child {
                padding-right: 0;
            }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-color);
            font-size: 15px;
            padding: 0 2px;
            font-family: var(--nav-font);
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
            position: relative;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                transition: 0.3s;
            }

        .navmenu > ul > li > a:before {
            content: "";
            position: absolute;
            height: 2px;
            bottom: -6px;
            left: 0;
            background-color: var(--nav-hover-color);
            visibility: hidden;
            width: 0px;
            transition: all 0.3s ease-in-out 0s;
        }

        .navmenu a:hover:before,
        .navmenu li:hover > a:before,
        .navmenu .active:before {
            visibility: visible;
            width: 100%;
        }

        .navmenu li:hover > a,
        .navmenu .active,
        .navmenu .active:focus {
            color: var(--nav-color);
        }

        .navmenu .dropdown ul {
            margin: 0;
            padding: 10px 0;
            background: var(--nav-dropdown-background-color);
            display: block;
            position: absolute;
            visibility: hidden;
            left: 14px;
            top: 130%;
            opacity: 0;
            transition: 0.3s;
            border-radius: 4px;
            z-index: 99;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        }

            .navmenu .dropdown ul li {
                min-width: 200px;
            }

            .navmenu .dropdown ul a {
                padding: 10px 20px;
                font-size: 15px;
                text-transform: none;
                color: var(--nav-dropdown-color);
            }

                .navmenu .dropdown ul a i {
                    font-size: 12px;
                }

                .navmenu .dropdown ul a:hover,
                .navmenu .dropdown ul .active:hover,
                .navmenu .dropdown ul li:hover > a {
                    color: var(--nav-dropdown-hover-color);
                }

        .navmenu .dropdown:hover > ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .navmenu .dropdown .dropdown ul {
            top: 0;
            left: -90%;
            visibility: hidden;
        }

        .navmenu .dropdown .dropdown:hover > ul {
            opacity: 1;
            top: 0;
            left: -100%;
            visibility: visible;
        }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

        .navmenu ul {
            display: none;
            list-style: none;
            position: absolute;
            inset: 60px 20px 20px 20px;
            padding: 10px 0;
            margin: 0;
            border-radius: 6px;
            background-color: var(--nav-mobile-background-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            box-shadow: none;
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
        }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-dropdown-color);
            padding: 10px 20px;
            font-family: var(--nav-font);
            font-size: 17px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: 0.3s;
                background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
            }

                .navmenu a i:hover,
                .navmenu a:focus i:hover {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                }

            .navmenu a:hover,
            .navmenu .active,
            .navmenu .active:focus {
                color: var(--nav-dropdown-hover-color);
            }

                .navmenu .active i,
                .navmenu .active:focus i {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                    transform: rotate(180deg);
                }

        .navmenu .dropdown ul {
            position: static;
            display: none;
            z-index: 99;
            padding: 10px 0;
            margin: 10px 20px;
            background-color: var(--nav-dropdown-background-color);
            transition: all 0.5s ease-in-out;
        }

            .navmenu .dropdown ul ul {
                background-color: rgba(33, 37, 41, 0.1);
            }

        .navmenu .dropdown > .dropdown-active {
            display: block;
            background-color: rgba(33, 37, 41, 0.03);
        }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .mobile-nav-toggle {
            color: #fff;
            position: absolute;
            font-size: 32px;
            top: 15px;
            right: 15px;
            margin-right: 0;
            z-index: 9999;
        }

        .mobile-nav-active .navmenu {
            position: fixed;
            overflow: hidden;
            inset: 0;
            background: rgba(33, 37, 41, 0.8);
            transition: 0.3s;
        }

            .mobile-nav-active .navmenu > ul {
                display: block;
            }
}


.banner-section .titulo-principal {
    font-family: var(--heading-font);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--contrast-color);
    margin-bottom: 1rem;
}

.banner-section .subtitulo {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--contrast-color);
}

.banner-section .sede {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--contrast-color);
}

.banner-section .fechas {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--contrast-color);
}

@media (max-width: 768px) {
    .banner-section .titulo-principal {
        font-size: 2rem;
    }

    .banner-section .subtitulo,
    .banner-section .sede,
    .banner-section .fechas {
        font-size: 1rem;
    }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 112px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 100px;
    }
}

.custom-padding-hero {
    padding-top: 20px;
    padding-bottom: 20px;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
    }

        .section-title h2:after {
            content: "";
            position: absolute;
            display: block;
            width: 50px;
            height: 3px;
            background: var(--accent-color);
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
        }

    .section-title p {
        margin-bottom: 0;
    }

    .section-title img {
        margin-bottom: 50px;
    }


.banner-section {
    background-image: url(../img/fondo2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 100px;
}


    .banner-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: -1;
    }


    .banner-section h1 {
        color: white;
        font-size: 36px;
        font-weight: bold;
        margin: 0;
    }


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    position: relative;
    /* padding: 140px 0 0 0;*/
}

    .hero .container {
        position: relative;
        z-index: 3;
    }

    .hero h2 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #222222;
    }

        .hero h2 .accent {
            color: #222222;
        }

    .hero p {
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        font-weight: 400;
        margin-bottom: 30px;
    }

    .hero .btn-get-started {
        color: var(--contrast-color);
        background: var(--accent-color);
        font-family: var(--heading-font);
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 14px 40px;
        border-radius: 50px;
        transition: 0.3s;
        border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
        background-color: color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .hero .btn-get-started:hover {
            border-color: color-mix(in srgb, var(--default-color), transparent 60%);
        }

    .hero .btn-watch-video {
        font-size: 16px;
        transition: 0.5s;
        margin-left: 25px;
        font-weight: 600;
        color: var(--default-color);
    }

        .hero .btn-watch-video i {
            color: color-mix(in srgb, var(--default-color), transparent 50%);
            font-size: 32px;
            transition: 0.3s;
            line-height: 0;
            margin-right: 8px;
        }

        .hero .btn-watch-video:hover i {
            color: var(--default-color);
        }

@media (max-width: 640px) {
    .hero h2 {
        font-size: 36px;
    }

    .hero .btn-get-started,
    .hero .btn-watch-video {
        font-size: 14px;
    }
}

.hero .icon-boxes {
    /* padding-bottom: 60px;*/
    z-index: 4;
}

@media (min-width: 1200px) {
    .hero .icon-boxes:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: calc(50% + 20px);
        background-color: var(--default-color);
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }
}

.hero .icon-box {
    padding: 40px 20px;
    position: relative;
    background: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    border-radius: 10px;
    text-align: center;
    transform: scale(1);
}

    .hero .icon-box .title {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 24px;
    }

        .hero .icon-box .title a {
            font-weight: bold;
            color: #3251AC;
            transition: all 0.3s ease-in-out;
        }

    .hero .icon-box .icon {
        font-size: 48px;
        color: #3251AC;
        transition: all 0.3s ease-in-out;
    }


    .hero .icon-box:hover {
        background: #3251AC;
        transform: scale(1.05);
    }

        .hero .icon-box:hover .icon,
        .hero .icon-box:hover .title a {
            color: #ffffff;
        }

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h3 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
}

.about .fst-italic {
    color: color-mix(in srgb, var(--default-color), var(--contrast-color) 50%);
}

.about .content ul {
    list-style: none;
    padding: 0;
}

    .about .content ul li {
        padding: 0 0 10px 30px;
        position: relative;
    }

    .about .content ul i {
        position: absolute;
        font-size: 20px;
        left: 0;
        top: -3px;
        color: var(--accent-color);
    }

.about .content p:last-child {
    margin-bottom: 0;
}

.about .pulsating-play-btn {
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
}
/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
    padding: 10px;
}

    .stats .stats-item i {
        font-size: 44px;
        color: var(--accent-color);
        line-height: 0;
        margin-right: 15px;
    }

    .stats .stats-item .purecounter {
        color: var(--heading-color);
        font-size: 40px;
        display: block;
        font-weight: 700;
        line-height: 40px;
    }

    .stats .stats-item p {
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        padding: 15px 0 0 0;
        margin: 0;
        font-family: var(--heading-font);
        font-size: 14px;
    }

*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
    padding: 10px;
}

.stats .stats-item i {
    font-size: 44px;
    color: var(--accent-color);
    line-height: 0;
    margin-right: 15px;
}

.stats .stats-item .purecounter {
    color: var(--heading-color);
    font-size: 40px;
    display: block;
    font-weight: 700;
    line-height: 40px;
}

.stats .stats-item p {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 15px 0 0 0;
    margin: 0;
    font-family: var(--heading-font);
    font-size: 14px;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    background-color: transparent;
}

    .call-to-action .container {
        padding-top: 80px;
        padding-bottom: 80px;
        border-radius: 15px;
        overflow: hidden;
        position: relative;
        clip-path: inset(0 round 15px);
    }

        .call-to-action .container img {
            position: fixed;
            top: 0;
            left: 0;
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            border-radius: 15px;
            overflow: hidden;
        }

        .call-to-action .container:before {
            content: "";
            background: rgba(0, 0, 0, 0.5);
            position: absolute;
            inset: 0;
            z-index: 2;
        }

        .call-to-action .container .content {
            position: relative;
            z-index: 3;
        }

    .call-to-action h3 {
        color: var(--default-color);
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .call-to-action p {
        color: var(--default-color);
        margin-bottom: 20px;
    }

    .call-to-action .play-btn {
        width: 94px;
        height: 94px;
        margin-bottom: 20px;
        background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 60%) 52%);
        border-radius: 50%;
        display: inline-block;
        position: relative;
        overflow: hidden;
    }

        .call-to-action .play-btn:before {
            content: "";
            position: absolute;
            width: 120px;
            height: 120px;
            animation-delay: 0s;
            animation: pulsate-btn 2s;
            animation-direction: forwards;
            animation-iteration-count: infinite;
            animation-timing-function: steps;
            opacity: 1;
            border-radius: 50%;
            border: 5px solid color-mix(in srgb, var(--accent-color), transparent 20%);
            top: -15%;
            left: -15%;
            background: rgba(198, 16, 0, 0);
        }

        .call-to-action .play-btn:after {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translateX(-40%) translateY(-50%);
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 15px solid var(--default-color);
            z-index: 100;
            transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
        }

        .call-to-action .play-btn:hover:before {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translateX(-40%) translateY(-50%);
            width: 0;
            height: 0;
            border: none;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 15px solid var(--default-color);
            z-index: 200;
            animation: none;
            border-radius: 0;
        }

        .call-to-action .play-btn:hover:after {
            border-left: 15px solid var(--accent-color);
            transform: scale(20);
        }

    .call-to-action .cta-btn {
        font-family: var(--heading-font);
        font-weight: 500;
        font-size: 16px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 12px 40px;
        border-radius: 5px;
        transition: 0.5s;
        margin: 10px;
        border: 2px solid var(--contrast-color);
        color: var(--contrast-color);
    }

        .call-to-action .cta-btn:hover {
            background: var(--accent-color);
            border: 2px solid var(--accent-color);
        }

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    background-color: var(--surface-color);
    padding: 40px;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

    .services .service-item .icon {
        width: 48px;
        height: 48px;
        position: relative;
        margin-bottom: 50px;
    }

        .services .service-item .icon i {
            color: color-mix(in srgb, var(--heading-color), transparent 30%);
            font-size: 56px;
            transition: ease-in-out 0.3s;
            z-index: 2;
            position: relative;
        }

        .services .service-item .icon:before {
            position: absolute;
            content: "";
            height: 100%;
            width: 100%;
            background: color-mix(in srgb, var(--heading-color), transparent 95%);
            border-radius: 50px;
            z-index: 1;
            top: 10px;
            right: -20px;
            transition: 0.3s;
        }

    .services .service-item h3 {
        color: color-mix(in srgb, var(--heading-color), transparent 20%);
        font-weight: 700;
        margin: 0 0 20px 0;
        padding-bottom: 8px;
        font-size: 22px;
        position: relative;
        display: inline-block;
        border-bottom: 4px solid color-mix(in srgb, var(--heading-color), transparent 90%);
        transition: 0.3s;
    }

    .services .service-item p {
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

    .services .service-item .readmore {
        margin-top: 15px;
        display: inline-block;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
    }

    .services .service-item:hover .icon i {
        color: var(--heading-color);
    }

    .services .service-item:hover .icon:before {
        background: color-mix(in srgb, var(--accent-color), transparent 50%);
    }

    .services .service-item:hover h3 {
        border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
        color: var(--heading-color);
    }

    .services .service-item:hover .readmore {
        color: var(--accent-color);
    }
/*.services .service-item h3 {
        min-height: 100px;  
        display: flex;
        align-items: center;
    }*/

.titulo-alineado {
    min-height: 100px;
    display: flex;
    align-items: center;
}
/*
.services .service-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}*/


.services .service-item h3 {
    min-height: 120px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 20px;
}

.services .service-item p {
    margin-top: 0;
}




/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
    font-weight: 400;
    font-size: 34px;
}

.faq .content p {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

    .faq .faq-container .faq-item:last-child {
        margin-bottom: 0;
    }

    .faq .faq-container .faq-item h3 {
        font-weight: 600;
        font-size: 18px;
        line-height: 24px;
        margin: 0 30px 0 0;
        transition: 0.3s;
        cursor: pointer;
        display: flex;
        align-items: flex-start;
    }

        .faq .faq-container .faq-item h3 .num {
            color: var(--accent-color);
            padding-right: 5px;
        }

        .faq .faq-container .faq-item h3:hover {
            color: var(--accent-color);
        }

    .faq .faq-container .faq-item .faq-content {
        display: grid;
        grid-template-rows: 0fr;
        transition: 0.3s ease-in-out;
        visibility: hidden;
        opacity: 0;
    }

        .faq .faq-container .faq-item .faq-content p {
            margin-bottom: 0;
            overflow: hidden;
        }

    .faq .faq-container .faq-item .faq-toggle {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 16px;
        line-height: 0;
        transition: 0.3s;
        cursor: pointer;
    }

        .faq .faq-container .faq-item .faq-toggle:hover {
            color: var(--accent-color);
        }

.faq .faq-container .faq-active h3 {
    color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}
/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 15px;
    padding: 15px;
    overflow: hidden;
}

    .team .member img {
        border-radius: 15px;
        /*overflow: hidden;*/
        width: 280px;
        height: 300px;
        object-fit: cover;
        border: 3px solid #fff;
    }

    .team .member .member-content {
        padding: 0 20px 30px 20px;
    }

    .team .member h4 {
        font-weight: 700;
        margin-top: 16px;
        margin-bottom: 2px;
        font-size: 20px;
    }

    .team .member span {
        font-style: italic;
        display: block;
        font-size: 14px;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
    }

    .team .member .social {
        margin-top: 15px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }

        .team .member .social a {
            color: color-mix(in srgb, var(--default-color), transparent 60%);
            transition: 0.3s;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
        }

            .team .member .social a:hover {
                color: var(--accent-color);
                border-color: var(--accent-color);
            }

        .team .member .social i {
            font-size: 18px;
            margin: 0 2px;
        }

    .team .member img {
        transition: transform 0.3s ease-in-out;
    }

    .team .member:hover img {
        transform: scale(1.05);
    }


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-container {
    background-color: var(--accent-color);
    height: 100%;
    padding: 20px;
}

.contact .info-item {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
    color: var(--contrast-color);
    background-color: color-mix(in srgb, var(--contrast-color), transparent 90%);
}

    .contact .info-item:last-child {
        margin-bottom: 0;
    }

    .contact .info-item i {
        font-size: 20px;
        color: var(--contrast-color);
        background-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
        width: 44px;
        height: 44px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        transition: all 0.3s ease-in-out;
        margin-right: 15px;
    }

    .contact .info-item h3 {
        color: var(--contrast-color);
        font-size: 20px;
        padding: 0;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .contact .info-item p {
        padding: 0;
        margin-bottom: 0;
        font-size: 14px;
    }

    .contact .info-item:hover i {
        background: var(--contrast-color);
        color: var(--accent-color);
    }

.contact .php-email-form {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: 100%;
    padding: 30px;
}

    .contact .php-email-form input[type=text],
    .contact .php-email-form input[type=email],
    .contact .php-email-form textarea {
        font-size: 14px;
        padding: 10px 15px;
        box-shadow: none;
        border-radius: 0;
        color: var(--default-color);
        background-color: var(--surface-color);
        border-color: color-mix(in srgb, var(--default-color), transparent 80%);
    }

        .contact .php-email-form input[type=text]:focus,
        .contact .php-email-form input[type=email]:focus,
        .contact .php-email-form textarea:focus {
            border-color: var(--accent-color);
        }

        .contact .php-email-form input[type=text]::placeholder,
        .contact .php-email-form input[type=email]::placeholder,
        .contact .php-email-form textarea::placeholder {
            color: color-mix(in srgb, var(--default-color), transparent 70%);
        }

    .contact .php-email-form button[type=submit] {
        color: var(--contrast-color);
        background: var(--accent-color);
        border: 0;
        padding: 10px 30px;
        transition: 0.4s;
        border-radius: 50px;
    }

        .contact .php-email-form button[type=submit]:hover {
            background: color-mix(in srgb, var(--accent-color), transparent 20%);
        }



/* 
---------------------------------------------
footer
--------------------------------------------- 
*/


.footer {
    padding: 5px 0px;
    background-color: #343435;
    width: 100%;
    font-size: 14px;
    text-align: center;
    padding: 30px 0;
    position: relative;
    margin-top: auto;
}

    .footer h3 {
        font-size: 36px;
        font-weight: 700;
        color: white;
        position: relative;
        padding: 0;
        margin: 0 0 15px 0;
    }

    .footer p {
        font-size: 15px;
        font-style: italic;
        color: white;
        padding: 0;
        margin: 0 0 30px 0;
    }

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

    .footer-icons i {
        font-size: 30px;
        color: white;
        transition: transform 0.3s ease, color 0.3s ease;
        cursor: pointer;
    }

        .footer-icons i:hover {
            color: #f39c12;
            transform: scale(1.3);
        }

.footer .credits {
    font-size: 13px;
    padding-top: 5px;
    color: white;
}

@media (max-width: 992px) {
    footer .right-text-content {
        text-align: center;
        margin-bottom: 30px;
    }

    footer .left-text-content p {
        text-align: center;
        margin-top: 30px;
    }
}

.video-thumbnail-container {
    position: relative;
    width: 80%;
    max-width: 1300px;
    margin: 0 auto;
    cursor: pointer;
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
    border-radius: 10px;
}

    .video-thumbnail-container:hover {
        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
        transform: scale(1.02);
    }

.video-thumbnail {
    width: 100%;
    border-radius: 10px;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
    height: 400px;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 50px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    cursor: pointer;
}

    .play-button:hover {
        background: rgba(0, 0, 0, 0.8);
    }


.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
}

.close-button {
    position: absolute;
    top: -40px;
    right: 10px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.video-text {
    position: absolute;
    top: calc(50% + 60px);
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 30px;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    transition: transform 0.3s ease-in-out, font-size 0.3s ease-in-out;
}


.video-thumbnail-container:hover .video-text {
    transform: translateX(-50%) scale(1.2);
}

/* Ajustes responsivos */
@media (max-width: 992px) {
    .video-thumbnail-container {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .video-thumbnail-container {
        width: 100%;
        padding: 0 15px;
    }
}
#logos img {
    object-fit: contain;
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

    #logos img:hover {
        transform: scale(1.05);
    }


