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

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

    background-image: url('./bg.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;

    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: overlay;
}

.main-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 40px auto;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: -10px;
    bottom: -10px;
    left: -10px;
    right: -10px;
    border: 1px solid #FFE600;
    border-bottom: none;
    z-index: 1;
    pointer-events: none;
}

.card-content {
    background-color: #2F3B77;
    padding: 50px 30px 70px 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.header-section {
    text-align: center;
    position: relative;
}

.bg-text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5.5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
    z-index: 0;
    width: 100%;
    letter-spacing: 2px;
}

.header-section h1 {
    color: #FFE600;
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}

.star {
    position: absolute;
    width: 20px;
    height: 20px;
}

.star:first-child {
    left: -15px;
    top: 50%;
}

.star-right {
    right: -15px;
    top: 10%;
    width: 16px;
    height: 16px;
}

.header-section p {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.form-section {
}

.jotform-placeholder {
    border: 2px dashed rgba(255, 255, 255, 0.3);
    background-color: rgba(0, 0, 0, 0.1);
    padding: 40px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.logo-container {
    position: absolute;
    bottom: -10px;
    left: -10px;
    right: -10px;
    transform: translateY(50%);
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container::before,
.logo-container::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: #FFE600;
}

.logo-container .logo {
    height: 80px;
    object-fit: contain;
    border-radius: 30px;
    margin: 0 20px;
}

@media (max-width: 600px) {
    .bg-text {
        font-size: 3.5rem;
    }

    .header-section h1 {
        font-size: 2.2rem;
    }

    .card-content {
        padding: 40px 20px 60px 20px;
    }
}

.bg-text-multiline {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5.5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
    z-index: 0;
    width: 100%;
    letter-spacing: 2px;
    line-height: 0.9;
    text-align: center;
    white-space: nowrap;
    pointer-events: none;
}

.bg-text-multiline.top {
    top: -10px;
}

.bg-text-multiline.bottom {
    bottom: -15px;
}

.confirmacion-title {
    color: #FFFFFF;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.confirmacion-subtitle {
    color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.btn-primary {
    display: inline-block;
    background-color: #FFE600;
    color: #2F3B77;
    font-weight: 700;
    font-size: 1.5rem;
    padding: 15px 45px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.footer-note {
    position: relative;
    z-index: 1;
    margin-top: 50px;
}

.footer-note p {
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .bg-text-multiline {
        font-size: 3.5rem;
    }
    .confirmacion-title {
        font-size: 2.2rem;
    }
    .confirmacion-subtitle {
        font-size: 1.1rem;
    }
    .btn-primary {
        font-size: 1.2rem;
        padding: 12px 30px;
    }
}