/* ============================================
   CALAVERANDIA - Landing Pages Stylesheet
   
   ============================================ */

/* Variables */
:root {
    --cal-orange: #d05e17;
    --cal-orange-dark: #b84f14;
    --cal-black: #000000;
    --cal-dark-gray: #d3d3d3;
    --cal-gray: #888;
    --cal-light-gray: #ccc;
    --cal-border: #555;
    --cal-border-footer: #333;
    --cal-white: #ffffff;
}

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

body {
    background-color: transparent;
    font-family: 'Golos Text', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--cal-white);
}

a {
    color: var(--cal-white);
    transition: all 0.3s ease;
}

.noPadding {
    padding: 0;
}

.row {
    
    margin: 0 !important;
}


/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    background-color: rgba(0, 0, 0, 0.7);
}

.navbar .line {
    display: block;
    width: 2px;
    height: 50px;
    background-color: var(--cal-white);
}

.navbar-brand img {
    max-width: 240px;
    width: 100%;
    height: auto;
}

.navbar-brand img.brand {
    max-width: 160px;
}


/* ============================================
   LANDING PAGE - FORM 
   ============================================ */

.section-wrap {
    background-color: transparent;
}

/* Banner column */
.col-background {
    display: flex;
    align-items: stretch;
    background-color: transparent;
}


/* Banner wrapper with max height */
.banner-wrapper {
    max-height: 800px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.col-background .background {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.col-background .background img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.section-wrap > .row {
    align-items: stretch;
}

.section-wrap > .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

/* Content column */
.col-content {
    flex: 1;
    background-color: transparent;
}

/* Title */
.header__title {
    font-size: 2.2rem;
    color: var(--cal-white);
    line-height: 1.2;
}

.header__subtitle {
    color: var(--cal-light-gray);
    font-size: 0.95rem;
}

/* Form container */
.content-form {
    background-color: var(--cal-dark-gray);
    border-radius: 12px;
}

.content-form .form-group label,
.content-form .label_input {
    color: var(--cal-black);
    font-size: 0.85rem;
    font-weight: 600;
}

.content-form .form-control,
.content-form textarea.form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--cal-border);
    border-radius: 0;
    color: #000;
    padding: 8px 0;
    font-size: 0.9rem;
}

.content-form .form-control::placeholder {
    color: var(--cal-gray);
}

.content-form .form-control:focus {
    background-color: transparent;
    border-bottom-color: var(--cal-orange);
    box-shadow: none;
    color: var(--cal-white);
}

/* Submit button */
.btn_form {
    font-size: 1rem;
    text-transform: capitalize;
    color: var(--cal-white);
    background-color: var(--cal-orange);
    border: 2px solid var(--cal-orange);
    padding: 10px 30px;
    border-radius: 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn_form:hover,
.btn_form:focus,
.btn_form:active {
    background-color: var(--cal-orange-dark);
    border-color: var(--cal-orange-dark);
    color: var(--cal-white);
}

/* Checkbox & links */
.form-check-label a {
    color: var(--cal-orange);
    text-decoration: underline;
}

.form-check-label a:hover {
    color: var(--cal-orange-dark);
}

.form-check-input:checked {
    background-color: var(--cal-orange);
    border-color: var(--cal-orange);
}



/* ============================================
   BACKGROUND IMAGE
   ============================================ */

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://image.mailing.boletomovil.com/lib/fe28117473640575731372/m/1/9a8ee720-3d51-49ec-a833-5e18f32c3fa8.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 0;
    opacity: 1;
}

body * {
    position: relative;
    z-index: 1;
}
/* ============================================
   THANK YOU PAGE (thankyou.html)
   ============================================ */

.hero-ty {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-ty::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://image.mailing.boletomovil.com/lib/fe28117473640575731372/m/1/25c7075b-2a48-498a-b5d1-60ae3aeac086.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-ty::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 1.5rem;
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--cal-white);
    margin-bottom: 1rem;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-content .logo-ty {
    max-width: 280px;
    width: 100%;
    height: auto;
}


/* ============================================
   FOOTER (shared)
   ============================================ */

.footer {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 2rem 0 1.5rem;
}

.footer p {
    color: var(--cal-gray);
    font-size: 0.85rem;
    margin: 0;
}

.footer .borders {
    padding-block: 2rem;
    margin-top: 1rem;
    border-top: 1px solid var(--cal-border-footer);
}

.footer .logo {
    display: block;
    max-width: 180px;
    width: 100%;
    height: auto;
}

.social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.5rem;
}

.social li a {
    color: var(--cal-white);
    text-decoration: none;
    font-size: 1.25rem;
}

.social li a:hover {
    color: var(--cal-orange);
}

.footer i {
    font-size: 1.25rem;
    color: var(--cal-white);
}

.footer a {
    text-decoration: none;
}

.footer a:hover i {
    color: var(--cal-orange);
}


/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .header__title {
        font-size: 1.6rem;
    }

    .col-background .background img {
        width: 100%;
        height: auto;
        max-height: 500px;
        object-fit: contain;
    }

    .navbar .line {
        height: 2px;
        width: 50px;
    }

    .floating-elements {
        display: none;
    }

    .hero-ty {
        min-height: 70vh;
    }

    .hero-content .logo-ty {
        max-width: 200px;
    }
}








/* ============================================
   RESPONSIVE - LARGE DEVICES (Desktop)
   ============================================ */




















