/*
 * Paleta de colores y letra
 */

:root {
    --primary-color: #4d9634;
    --secondary-color: #437333;
    --accent-color: #894331;
    --dark-color: #6e3327;
    --light-color: #fff;
}

* {
    font-family: 'Montserrat', sans-serif !important;
}

body {
    font-family: 'Montserrat', sans-serif;
}

/*
 * Navegacion Corregida
 */

.blog-header {
    padding: 0;
    height: auto;
}

.navbar {
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.navbar-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.navbar-brand-logo img {
    width: 180px;
    height: auto;
    object-fit: contain;
}

.navbar-light.bg-light {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background-color: var(--primary-color);
    color: white !important;
}

/*
 * Inicio Corregido
 */

.inicio {
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding-top: 80px;
}

.inicio-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
    z-index: 1;
}

.inicio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(44, 85, 48, 0.7) 0%,
            rgba(107, 142, 35, 0.5) 100%);
    z-index: 1;
}

.inicio-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--light-color);
    background-color: var(--light-color);
    /* background: rgba(255, 255, 255, 0.15); */
    /* backdrop-filter: blur(20px); */
    /* -webkit-backdrop-filter: blur(12px); */
    border-radius: 20px;
    /* border: 1px solid rgba(255, 255, 255, 0.25); */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 2rem 1rem;
    margin: 2rem 0;
    max-width: 1200px;
}

.inicio:hover .inicio-img {
    transform: scale(1.05);
}

.inicio-content img {
    max-width: 80%;
    height: auto;
}

.info-chip {
    border-radius: 50px;
    font-size: 15px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--accent-color);
    color: var(--light-color);
    cursor: default;
    min-width: 280px;
    background-color: var(--accent-color);
    /* background: rgba(77, 150, 52, 0.4); */
    backdrop-filter: blur(5px);
}

.text-inicio {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.btn-personalizado {
    font-size: 16px;
    border-radius: 50px;
    border: 2px solid var(--dark-color);
    color: var(--dark-color);
    font-weight: bold;
    padding: 12px 30px;
    transition: all 0.3s ease;
    background: transparent;
    margin: 5px;
}

.btn-personalizado:hover {
    background-color: var(--dark-color);
    color: var(--light-color);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .inicio {
        padding-top: 70px;
        min-height: 90vh;
    }

    .inicio-content {
        padding: 2rem 1rem;
        margin: 1rem;
    }

    .inicio-content img {
        max-width: 200px;
    }

    .info-chip {
        min-width: 160px;
        font-size: 12px;
        padding: 8px 15px;
    }

    .btn-personalizado {
        font-size: 14px;
        padding: 10px 20px;
    }

    .navbar-brand-logo img {
        width: 40px;
        height: 40px;
    }

    .navbar-brand-logo {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .inicio-content .row {
        flex-direction: column;
    }

    .inicio-content .col-12.col-md-3 {
        margin-top: 1rem;
    }

    .info-chip {
        min-width: 100%;
        margin: 3px 0;
    }
}

/*
 * Acerca de
 */

.about-section {
    padding: 40px 0;
}

.about-text {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--light-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.3rem;
    color: var(--light-color);
}

.about-carousel {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 350px;
}

.carousel-img {
    position: absolute;
    width: 80%;
    height: 85%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    border: 8px solid white;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
}

.carousel-img.active {
    opacity: 1;
    transform: scale(1) rotate(2deg);
    z-index: 3;
    right: 0;
    top: 0;
}

.carousel-img.next {
    opacity: 0.7;
    transform: scale(0.9) rotate(-3deg);
    z-index: 2;
    right: 10%;
    top: 10%;
}

.carousel-img.prev {
    opacity: 0.4;
    transform: scale(0.8) rotate(-8deg);
    z-index: 1;
    right: 20%;
    top: 20%;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.carousel-container:hover .carousel-img.active {
    transform: scale(1.02) rotate(3deg);
}

.card-feature {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    background-color: var(--light-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.icon-box {
    font-size: 24px;
    color: var(--light-color);
    background-color: var(--accent-color);
    border-radius: 10px;
    padding: 10px;
    display: inline-block;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-carousel {
        min-height: 300px;
    }

    .carousel-container {
        height: 250px;
    }

    .carousel-img {
        width: 85%;
        height: 80%;
    }
}

/*
 * Temas
 */

.subtemas-section {
    padding: 40px 0;
}

.subtemas-text h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.subtemas-text p {
    font-size: 1.3rem;
}

.card {
    flex: 1 1 300px;
    max-width: 400px;
    border: none;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

.card-img-top {
    width: 65%;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
    padding-top: 20px;
}

.subtemas-section:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 25px 20px;
    position: relative;
    z-index: 2;
    background-color: white;
    transition: all 0.4s ease;
}

.card-title {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.subtopics {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background-color: rgba(77, 150, 52, 0.05);
    border-radius: 0 0 20px 20px;
    margin-top: -10px;
    position: relative;
    z-index: 1;
}

/* Cuando la sección tiene hover, mostrar todos los subtemas */
.subtemas-section:hover .subtopics {
    max-height: 300px;
}

.subtopic-list {
    list-style-type: none;
    padding: 15px 20px 20px;
    margin: 0;
}

.subtopic-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #555;
    font-size: 0.95rem;
    position: relative;
    padding-left: 15px;
}

.subtopic-list li:before {
    content: "🌿";
    position: absolute;
    left: 0;
}

.subtopic-list li:last-child {
    border-bottom: none;
}

/* COLORES DISTINTOS Y VISIBLES */
.card-bosques .subtopics {
    background-color: rgba(77, 150, 52, 0.1);
}

.card-tecnologia .subtopics {
    background-color: rgba(44, 130, 201, 0.1);
}

.card-clima .subtopics {
    background-color: rgba(231, 76, 60, 0.1);
}

.card-retos .subtopics {
    background-color: rgba(165, 113, 78, 0.1);
}

/* Indicador visual de hover individual */
.card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover::after {
    transform: scaleX(1);
}

.subtemas-section {
    transition: all 0.3s ease;
}

.subtemas-section:hover {
    transform: translateY(-5px);
}

/*
 * Por que participar
 */

.blog-post {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-post-text {
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-post-title {
    font-size: 2rem;
    color: var(--light-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.blog-post-texto {
    font-size: 1.1rem;
    color: var(--light-color);
    margin-bottom: 0;
}

.btn-post {
    font-size: 15px;
    border-radius: 50px;
    border: 2px solid var(--dark-color);
    background-color: var(--dark-color);
    color: var(--light-color);
    font-weight: bold;
    padding: 10px 25px;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-decoration: none;
    display: inline-block;
}

.btn-post:hover {
    background-color: var(--light-color);
    color: var(--dark-color);
}

.img-objetivos {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    padding: 12px;
    background: white;
    border-radius: 16px;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(45, 80, 22, 0.1);
    border: 1px solid rgba(45, 80, 22, 0.15);
}

.img-objetivos img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.blog-sidebar {
    padding: 30px;
    background-color: var(--secondary-color);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.blog-sidebar h4 {
    color: var(--light-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.blog-sidebar p,
.blog-sidebar li {
    color: var(--light-color);
    font-size: 1.1rem;
}

.img-sidebar img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.blog-main,
.blog-sidebar-container {
    padding: 0 15px;
}

@media (max-width: 768px) {

    .blog-post-text,
    .blog-sidebar {
        padding: 20px;
    }

    .blog-post-title {
        font-size: 1.7rem;
    }
}

/*
 * Paquetes de Costos
 */

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

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.package-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    border-top: 4px solid var(--accent-color);
}

.package-card.featured {
    border-top: 4px solid var(--accent-color);
    transform: scale(1.02);
}

.package-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.package-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.package-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.package-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 10px 0;
}

.package-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.package-features {
    flex-grow: 1;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    line-height: 1.5;
}

.feature-icon {
    color: var(--accent-color);
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 0.95rem;
}

.package-note {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin-top: 10px;
    text-align: center;
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: none;
    }

    .package-card.featured:hover {
        transform: translateY(-8px);
    }
}

/*
 * Comision
 */

.commissions-section {
    overflow: hidden;
}

.commissions-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
}

.commissions-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.commissions-track {
    display: flex;
    animation: scroll-infinity 30s linear infinite;
    gap: 60px;
    padding: 0 30px;
}

.commission-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    
    min-width: 180px;
    height: 100px;
}

.commission-logo {
    max-width: 180px;
    max-height: auto;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%);
    transition: all 0.3s ease;
}

.commission-item:hover .commission-logo {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Animación del carrusel infinito */
@keyframes scroll-infinity {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-180px * 5 - 60px * 5));
        /* Ancho item * cantidad + gap * cantidad */
    }
}

/* Pausar animación al hacer hover */
.commissions-carousel:hover .commissions-track {
    animation-play-state: paused;
}

/* Efectos de desvanecimiento en los bordes */
.commissions-carousel::before,
.commissions-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.commissions-carousel::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.commissions-carousel::after {
    right: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

/*
 * Patrocinadores
 */

.sponsors-section {
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.sponsors-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
}

.sponsors-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.sponsors-track {
    display: flex;
    animation: scroll-infinity 30s linear infinite;
    gap: 60px;
    padding: 0 30px;
}

.sponsor-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
    min-width: 180px;
    height: 100px;
}

.sponsor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.sponsor-logo {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%);
    transition: all 0.3s ease;
}

.sponsor-item:hover .sponsor-logo {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Animación del carrusel infinito */
@keyframes scroll-infinity {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-180px * 5 - 60px * 5));
        /* Ancho item * cantidad + gap * cantidad */
    }
}

/* Pausar animación al hacer hover */
.sponsors-carousel:hover .sponsors-track {
    animation-play-state: paused;
}

/* Efectos de desvanecimiento en los bordes */
.sponsors-carousel::before,
.sponsors-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.sponsors-carousel::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.sponsors-carousel::after {
    right: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .sponsors-subtitle {
        font-size: 1rem;
    }

    .sponsor-item {
        min-width: 140px;
        height: 80px;
        padding: 10px 20px;
        gap: 40px;
    }

    .sponsor-logo {
        max-width: 100px;
        max-height: 50px;
    }

    @keyframes scroll-infinity {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-140px * 5 - 40px * 5));
        }
    }

    .sponsors-carousel::before,
    .sponsors-carousel::after {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .sponsor-item {
        min-width: 120px;
        height: 70px;
        padding: 8px 15px;
        gap: 30px;
    }

    .sponsor-logo {
        max-width: 80px;
        max-height: 40px;
    }
}

/*
 * Ponentes invitados
 */

.coming-soon-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.coming-soon-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.speaker-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.icon-circle {
    width: 120px;
    height: 120px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(77, 150, 52, 0.3);
    animation: gentle-float 3s ease-in-out infinite;
}

.icon-plus {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(67, 115, 51, 0.4);
    animation: gentle-bounce 2s ease-in-out infinite;
}

.coming-soon-title {
    font-size: 2.2rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 25px;
}

.coming-soon-text {
    font-size: 1.3rem;
    color: #6c757d;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 600px;
}

/* Animaciones suaves */
@keyframes gentle-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes gentle-bounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 1.8rem;
    }

    .coming-soon-text {
        font-size: 1.1rem;
        padding: 0 15px;
    }

    .speaker-icon {
        margin-bottom: 20px;
    }

    .icon-circle {
        width: 100px;
        height: 100px;
    }

    .icon-plus {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

/* .section-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}

.section-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin-top: 15px;
}

.speaker-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.speaker-img {
    height: 250px;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: bold;
    overflow: hidden;
}

.speaker-img img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    border-radius: 50%;
}

.speaker-info {
    padding: 20px;
    background-color: white;
}

.speaker-name {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.speaker-title {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.stats-section {
    background-color: var(--light-color);
    padding: 60px 0;
    margin: 60px 0;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-title {
    color: var(--secondary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .speaker-card {
        margin-bottom: 20px;
    }
} */

/*
 * Contador
 */

.registration-content {
    max-width: 800px;
    margin: 0 auto;
}

.registration-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.registration-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    text-align: center;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.countdown-item {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
}

.countdown-number {
    font-size: 3.4rem;
    font-weight: 700;
    color: #e74c3c;
    display: block;
}

.countdown-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .registration-title {
        font-size: 2rem;
    }

    .countdown-timer {
        gap: 10px;
    }

    .countdown-item {
        min-width: 60px;
        padding: 10px;
    }

    .countdown-number {
        font-size: 2.5rem;
    }
}

/*
 * Formulario
 */

.registration-form-section {
    padding: 30px 0;
    background-color: var(--light-color);
    margin-bottom: 35px;
}

.form-container {
    background: var(--light-color);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.form-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.form-purpose {
    background-color: #f8f9fa;
    border-left: 4px solid var(--secondary-color);
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 0 8px 8px 0;
}

.form-purpose h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.form-purpose p {
    color: #7f8c8d;
    margin: 0;
}

.form-purpose li {
    color: #7f8c8d;
    margin: 0;
}

.btn-formularios {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-color);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(21, 21, 21, 0.3);
    display: block;
    width: 100%;
    margin-bottom: 15px;
    text-decoration: none;
    text-align: center;
}

.btn-formularios:hover {
    transform: translateY(-3px);
    color: var(--light-color);
}

.btn-formularios:nth-child(2) {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--light-color) 100%);
}

.btn-formularios:nth-child(2):hover {
    box-shadow: 0 7px 20px var(--accent-color);
}

.contact-box {
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid var(--secondary-color);
}

.contact-phone {
    font-size: 1.3rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin: 10px 0;
}

.contact-email {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-email:hover {
    color: var(--dark-color);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .form-container {
        margin-bottom: 30px;
    }
}

/*
 * Footer
 */

footer {
    background-color: var(--light-color);
    color: var(--dark-color);
    padding: 3rem 0;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    height: 250px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo {
        height: 150px;
        margin-bottom: 10px;
    }
}

.list-unstyled a {
    font-size: 1.1rem;
    transition: color 0.3s;
    color: var(--dark-color);
}

.list-unstyled a:hover {
    color: var(--secondary-color);
}

.social-icons a {
    font-size: 1.4rem;
    transition: color 0.3s;
    color: var(--dark-color);
}

.social-icons a:hover {
    color: var(--secondary-color);
}