/* Marketing Campaign Styles */

.marketing-hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.marketing-hero-content {
    max-width: 800px;
    z-index: 2;
    padding: 0 20px;
}

.marketing-hero-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.marketing-hero-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    color: #fff;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta-button {
    background-color: #3D9BE9;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0 4px 15px rgba(61, 155, 233, 0.4);
    cursor: pointer;
}

.hero-cta-button:hover {
    background-color: #2f89d0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(61, 155, 233, 0.6);
}

.scroll-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 2;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-20px) translateX(-50%);
    }

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

.discount-badge a {
    display: inline-block;
    background-color: #e98890e5;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: pulse-badge 2s infinite;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

@keyframes pulse-badge {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

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

.scroll-arrow svg {
    width: 40px;
    height: 40px;
    fill: white;
    filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5));
}

/* Event Section */
.event-section {
    padding: 80px 0;
    background-color: #1d1d1d2f;
    position: relative;
}

.event-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.event-text-column {
    flex: 1;
    text-align: left;
}

.event-image-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.event-section .hero-cta-button {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.event-section-title {
    font-size: 32px;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
}

.event-section-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #ccc;
}

.event-image {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.event-features {
    list-style-type: none;
    padding: 0;
    margin: 30px 0;
}

.event-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
    font-size: 16px;
    color: #ddd;
}

.event-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3D9BE9;
    font-weight: bold;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    position: relative;
}

.contact-form-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

.contact-form-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
    font-family: 'Lobster', cursive;
    color: #fff;
}

.contact-form-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #ccc;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.evento-form {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 15px;
    color: #ddd;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #444;
    border-radius: 8px;
    background-color: rgba(20, 20, 20, 0.8);
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #3D9BE9;
    outline: none;
    box-shadow: 0 0 0 2px rgba(61, 155, 233, 0.3);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    background-color: #3D9BE9;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 15px rgba(61, 155, 233, 0.4);
    width: 100%;
    margin-top: 10px;
}

.form-submit:hover {
    background-color: #2f89d0;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(61, 155, 233, 0.6);
}

.form-info {
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
    color: #aaa;
}

/* Responsive */
@media (max-width: 992px) {
    .event-container {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .event-text-column,
    .event-image-column {
        width: 100%;
    }

    .event-section-title {
        text-align: center;
    }

    .event-section-subtitle {
        text-align: center;
    }

    .event-image {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .event-section {
        padding: 50px 0;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .evento-form {
        padding: 25px;
    }

    .marketing-hero-title {
        font-size: 36px;
    }

    .marketing-hero-subtitle {
        font-size: 16px;
    }

    .contact-form-title {
        font-size: 28px;
    }

    .contact-form-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .marketing-hero-title {
        font-size: 28px;
    }
}