@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ==========================================================================
   landing-gracias.css
   Union de base.css + main.css, depurada para landing-gracias-google y
   landing-gracias-meta (ambos index.html son identicos salvo las URLs).
   Se conservaron unicamente las reglas cuyo selector encuentra algun elemento
   en esas paginas; las demas (formularios, acordeon, carrusel de estadisticas,
   tarjetas de campus, testimonios, barra de navegacion...) pertenecen a otras
   landings y se retiraron. El orden original se respeta, asi que la cascada
   no cambia.
   ========================================================================== */

/* ============ de base.css ============ */
:root {
    --primary: #0360aa;
    --primary-light: #1877c5;
    --primary-dark: #024a84;
    --secondary: #f5d732;
    --secondary-hover: #e0c217;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --danger: #dc3545;
    
    --font-main: 'Poppins', sans-serif;
    
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.2);
    
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.text-center { text-align: center; }

.text-white { color: var(--white) !important; }

.text-yellow { color: var(--secondary) !important; }

.section-title {
    font-size: 2.2rem;
    color: #111111;
    font-weight: 400;
    margin-bottom: 10px;
}

.py-medium { padding: 40px 0; }

.mt-small { margin-top: 15px; }

.mb-medium { margin-bottom: 30px; }

.bg-primary-dark {background-color: var(--primary-dark) !important;}

.btn, .btn-inscribete {
    perspective: 1000px;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    position: relative;
    box-shadow: none !important;
}

.flip-btn-inner {
    position: relative;
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.btn:hover .flip-btn-inner,
.btn-inscribete:hover .flip-btn-inner {
    transform: rotateX(180deg);
}

.flip-btn-front, .flip-btn-back {
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    padding: 14px 28px;
    border-radius: 99px;
    font-weight: 600;
}

.flip-btn-front {
    position: relative;
    width: 100%;
}

.btn-inscribete .flip-btn-front, .btn-inscribete .flip-btn-back {
    padding: 8px 18px;
}

.flip-btn-back {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    transform: rotateX(180deg);
}

.flip-bg-secondary { background-color: var(--secondary); color: var(--primary-dark); border: 2px solid var(--secondary); }

.flip-bg-white { background-color: #ffffff; color: #111111; border: 2px solid #ffffff; }

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

.hero-text {
    width: 100%;
    color: var(--white);
    margin-bottom: 30px;
}

.hero-text .logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--white);
    line-height: 1.3;
}

.hero-text .subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    max-width: 500px;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.badge {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 20px;
    border-radius: 30px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
}

@media (min-width: 992px) {
    .hero-text {
            width: 55%;
            margin-bottom: 0;
            padding-right: 40px;
        }
}

.logos-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    height: 80px;
    z-index: 10;
}

.logos-slider-track {
    display: flex;
    width: max-content;
    animation: infinite-slide 15s linear infinite;
    align-items: center;
    height: 100%;
}

.logos-set {
    display: flex;
    align-items: center;
    gap: 60px;
    padding-right: 60px;
}

.logos-slider-track img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: var(--transition);
}

.logos-slider-track img[src*="EUDELOG.png"] {
    height: 52px;
}

.logos-slider-track img[src*="opnlms.svg"] {
    height: 34px;
}

.logos-slider-track img[src*="rvoe.svg"] {
    height: 56px;
}

.logos-slider-track img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.blur-left,
.blur-right {
    position: absolute;
    top: 0;
    height: 100%;
    width: 150px;
    pointer-events: none;
    z-index: 2;
}

.blur-left {
    left: 0;
    background: linear-gradient(to right, var(--primary-dark) 0%, transparent 100%);
    mask-image: linear-gradient(to right, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 0%, transparent 100%);
}

.blur-right {
    right: 0;
    background: linear-gradient(to left, var(--primary-dark) 0%, transparent 100%);
    mask-image: linear-gradient(to left, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 0%, transparent 100%);
}

.footer {
    background-color: var(--primary-dark);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    width: 100%;
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 220px;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.1rem;
}

.social-links a:hover {
    background-color: var(--secondary);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

@media (min-width: 768px) {
    .footer-logo {
            width: auto;
            margin-bottom: 0;
        }
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

.hero-text h1, .hero-text .subtitle, .badges {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-text .subtitle { animation-delay: 0.2s; }

.badges { animation-delay: 0.4s; }

@media (max-width: 768px) {
    .badge {
            font-size: 0.95rem;
            padding: 8px 16px;
        }
    .hero-text h1 {
            font-size: 2.2rem;
        }
    .section-title {
            font-size: 1.8rem;
        }
}

.btn-inscribete {
    background-color: var(--secondary); /* Yellow */
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 8px 18px;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
    display: inline-block;
}

.btn-inscribete:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    .badge {
            font-size: 0.95rem;
            padding: 8px 16px;
        }
    .btn-inscribete {
            padding: 6px 14px;
            font-size: 0.8rem;
        }
}

/* ============ de main.css ============ */
* {box-sizing:border-box}

html,
body {scroll-behavior:smooth}

body {
  margin:0; font-family:"Poppins", sans-serif; background:#fff;
}

header {position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; color: #fff;
  padding: 110px 0 50px; background-image: url(../img/header-bg.jpg); background-size: cover; background-position: center; 
  background-repeat: no-repeat;z-index: 1}

header:before {content: "";position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
  background: linear-gradient(to right, rgba(3, 96, 170, 0.85) 0%, rgba(3, 96, 170, 0.5) 100%);}

.hero-content {position: relative; z-index: 10; display: flex; flex-wrap: wrap; align-items: center; 
  justify-content: space-between; flex: 1;}

.hero-text .logo {transition: opacity .35s ease-out, transform .35s ease;}

.body_thanks header:before {background: linear-gradient(to right, rgba(3, 96, 170, .9) 0%, rgba(3, 96, 170, 0.6) 100%);}

.body_thanks .hero-text {padding: 0; max-width: 560px; margin: 0 auto; text-align: center;}

.body_thanks .hero-text > img {max-width: none; display: block; margin: 0 auto; margin-bottom: 3em; height: 56px;}

.body_thanks .hero-text > p {font-size: 20px; width: auto; max-width: none; font-weight: 300;}

.remain_count {margin-bottom: 2em; display: flex; align-items: center; justify-content: center;}

.remain_count > span {backdrop-filter: blur(20px); background: rgba(255, 255, 255, 0.35); box-shadow: var(--shadow-lg); 
  font-size: 15px; text-shadow: 0 0 10px #333; display: none; font-weight: 300; padding: 12px 22px}

@media (max-width: 997.98px) {
    body.body_thanks .hero-text .logo {transform: scale(.85);}
}

/* ============ animaciones ============ */
@keyframes infinite-slide {
    from { transform: translateX(0); }
    to { transform: translateX(-25%); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
