
.bg-hero {
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.bg-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

.bg-hero p {
    margin-top: 0.5rem;
    font-size: 1.125rem;
}

.bg-hero a {
    text-decoration: none;
    color:#EA580C;
}
.bg-hero a:hover {
    text-decoration: none;
}

main {
    padding: 6rem 0;
    background-color: white;
}

.section-gap {
    margin-top: 6rem;
}

.flex-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

@media (min-width: 768px) {
    .flex-container {
        flex-direction: row;
        align-items: center;
    }
}

.flex-container-reverse {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .flex-container-reverse {
        flex-direction: row;
    }
}

.w-half {
    width: 100%;
}

@media (min-width: 768px) {
    .w-half {
        width: 50%;
    }
}

.w-third {
    width: 100%;
}

@media (min-width: 1024px) {
    .w-third {
        width: 33.333333%;
    }
}

.w-two-thirds {
    width: 100%;
}

@media (min-width: 1024px) {
    .w-two-thirds {
        width: 66.666667%;
    }
}

.section-subtitle {
    color: #F97316;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.section-text {
    color: #4B5563;
    margin-top: 1rem;
    text-align: justify;
}

img.rounded-lg {
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    max-width: 100%;
    height: auto;
}

.claim-button {
    display: inline-block;
    background-color: #F97316;
    color: #FFFFFF;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    margin-top: 1.5rem;
    transition: background-color 0.2s;
    text-decoration: none;
}

.claim-button:hover {
    background-color: #EA580C;
}

.steps-container {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-icon {
    background-color: #FFEDD5;
    padding: 0.75rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon .material-icons {
    color: #F97316;
}

.step-content h3 {
    font-weight: 700;
    font-size: 1.125rem;
    color: #1F2937;
    margin: 0;
}

.step-content p {
    color: #4B5563;
    margin-top: 0.25rem;
    text-align: justify;
}

.form-container {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.form-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1.5rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    display: block;
    margin-bottom: 0.25rem;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    background-color: #F3F4F6;
    border: 1px solid #E5E7EB;
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    outline: none;
    border-color: #F97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.3);
}

textarea {
    resize: vertical;
}

.submit-button {
    width: 100%;
    background-color: #F97316;
    color: #FFFFFF;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 1rem;
}

.submit-button:hover {
    background-color: #EA580C;
}

.form-note {
    font-size: 0.75rem;
    color: #889098;
    margin-top: 1rem;
    text-align: center;
}

.cta-card {
    position: relative;
}

.cta-card img {
    border-radius: 0.5rem;
    width: 100%;
    height: auto;
    display: block;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: #FFFFFF;
}

.cta-overlay h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin: 0;
}

.cta-overlay p {
    margin-top: 0.5rem;
}

.cta-overlay a {
    margin-top: 1rem;
    display: inline-block;
    background-color: #FFFFFF;
    color: #F97316;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
}

.cta-overlay a:hover {
    background-color: #F3F4F6;
}

.contact-card {
    background-color: #FFFFFF;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-top: 2rem;
    text-align: center;
}

.contact-icon {
    background-color: #FFEDD5;
    padding: 1rem;
    border-radius: 9999px;
    display: inline-block;
}

.contact-icon .material-icons {
    color: #F97316;
    font-size: 36px;
}

.contact-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F2937;
    margin-top: 1rem;
    margin-bottom: 0;
}

.contact-card p {
    color: #4B5563;
    margin-top: 0.5rem;
}

.contact-card a {
    margin-top: 1rem;
    display: inline-block;
    background-color: #F97316;
    color: #FFFFFF;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    text-decoration: none;
}

.contact-card a:hover {
    background-color: #EA580C;
}

.faq-container {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: #FFFFFF;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-item.active {
    background-color: #F97316;
    color: #FFFFFF;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h5 {
    font-weight: 600;
    margin: 0;
    color: #1F2937;
}

.faq-item.active .faq-question h5 {
    color: #FFFFFF;
}

.faq-question .material-icons {
    color: #4B5563;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-question .material-icons {
    color: #FFFFFF;
    transform: rotate(45deg);
}

/* --- Estilos clave para la funcionalidad de mostrar/ocultar la respuesta --- */
.faq-answer {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #FFFFFF;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, margin-top 0.3s ease-out;
    opacity: 0;
    padding-bottom: 0;
    text-align: justify;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding-bottom: 0.5rem;
}