
        .header-logo{
            background-color: #333;
        }
        :root {
            --primary-color: #00d9a3;
            --dark-overlay: rgba(0, 0, 0, 0.6);
            --text-light: #ffffff;
            --text-dark: #333333;
            --error-color: #dc3545;
            --success-color: #28a745;
        }

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

        body {
            font-family: 'Open Sans', sans-serif;
            overflow-x: hidden;
            background-image: url('../img/bg.jpg');
            background-repeat: no-repeat;
            background-position: center;
            transition: all 0.3s ease;
            background-size: cover;
            background-attachment: scroll, fixed;
        }

        .hero-section {
            position: relative;
            min-height: 100vh;
            background-color: rgba(0,0,0,0.6);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--text-light);
            padding: 40px 20px;
        }

        .logo-container {
            text-align: center;
            margin-bottom: 30px;
        }

        .logo {
            max-width: 180px;
            height: auto;
            filter: brightness(0) invert(1);
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin: 20px 0;
        }

        .content-wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 30px;
            line-height: 1.3;
        }

        .hero-description {
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: justify;
            margin-bottom: 25px;
            font-weight: 300;
        }

        .benefits-title {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            font-weight: 300;
        }

        .benefits-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 40px;
        }

        .benefits-list li {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 8px;
            padding-left: 0;
        }

        .form-card {
            background: rgba(255, 255, 255, 0.98);
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            color: var(--text-dark);
            max-width: 600px;
            margin: 0 auto;
        }

        .form-label {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .form-control {
            border-radius: 6px;
            border: 1px solid #ddd;
            padding: 12px 15px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(0, 217, 163, 0.25);
        }

        .form-control.is-invalid {
            border-color: var(--error-color);
            background-image: none;
        }

        .form-control.is-valid {
            border-color: var(--success-color);
            background-image: none;
        }

        .error-message {
            color: var(--error-color);
            font-size: 0.875rem;
            margin-top: 5px;
            display: none;
        }

        .error-message.show {
            display: block;
        }

        .btn-submit {
            background-color: var(--primary-color);
            border: none;
            color: white;
            padding: 15px 40px;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 1px;
            border-radius: 50px;
            width: 100%;
            margin-top: 20px;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .btn-submit:hover:not(:disabled) {
            background-color: #00c091;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 217, 163, 0.4);
        }

        .btn-submit:disabled {
            background-color: #cccccc;
            cursor: not-allowed;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 1.8rem;
            }

            .hero-description, .benefits-title {
                font-size: 1rem;
                text-align: left;
            }

            .form-card {
                padding: 25px;
            }

            .logo-text {
                font-size: 1.5rem;
            }
        }

        @media (min-width: 769px) {
            .content-wrapper {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 40px;
                align-items: start;
            }

            .hero-content {
                padding-right: 20px;
            }
        }
        /* Footer Styles */
        .footer-section {
    background-color: #333;
}
.footer-link a{
            color: #CCC;
            font-size: 12px;
            text-decoration: none;
        }
.footer-text {
    color: var(--text-dark);
    font-weight: 600;
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;
    color: #CCC;
}
.footer-text a,
.footer-section{
    color: #CCC;
}


.social-icons {
    display: inline-flex;
    gap: 15px;
    align-items: center;
    vertical-align: middle;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: #00c091;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 217, 163, 0.4);
}

.social-icons svg {
    width: 20px;
    height: 20px;
}

form#mauticform_landingclubalturaalcohuazcl {
    display: block !important;
}

.mauticform-success-message,
.mauticform-message{
    display: none;
}

.form-container form{
    position: relative;
}

div#mauticform_landingclubalturaalcohuazcl_message{
    display: none;
}
.mauticform-post-success div#mauticform_landingclubalturaalcohuazcl_message {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
    background: rgb(250 250 250 / 90%);
    height: 100%;
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center;     /* Centra verticalmente */
}