@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --cannabis-green: #1a4d1e;
    --cannabis-light: #4caf50;
    --cannabis-lime: #8bc34a;
    --primary: #1a4d1e;
    --primary-dark: #0f2e11;
    --white: #ffffff;
    --gray-bg: #f8faf8;
    --bg-light: #f1f8f1;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --accent-gold: #f1c40f;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- FLASH MESSAGES --- */
.flash-stack {
    max-width: 1280px;
    margin: 20px auto 0;
    padding: 0 2rem;
    display: grid;
    gap: 12px;
}

.flash {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 226, 1);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 40px rgba(26, 77, 30, 0.08);
    backdrop-filter: blur(10px);
}

.flash--success {
    border-left: 6px solid rgba(76, 175, 80, 1);
}

.flash--error {
    border-left: 6px solid rgba(239, 68, 68, 1);
}

.flash__content {
    flex: 1;
}

.flash__title {
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.flash__text {
    color: var(--text-gray);
    line-height: 1.6;
}

.flash__link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 800;
    color: var(--cannabis-green);
    text-decoration: none;
    border-bottom: 2px solid rgba(76, 175, 80, 0.35);
    padding-bottom: 2px;
}

.flash__link:hover {
    border-bottom-color: rgba(76, 175, 80, 0.7);
}

.flash__list {
    margin-top: 8px;
    padding-left: 18px;
    color: rgba(127, 29, 29, 1);
}

.flash__close {
    border: 0;
    background: rgba(15, 46, 17, 0.06);
    color: var(--text-dark);
    width: 34px;
    height: 34px;
    border-radius: 12px;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.flash__close:hover {
    transform: scale(1.05);
    background: rgba(15, 46, 17, 0.1);
}

/* --- HEADER --- */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(26, 77, 30, 0.08);
}

.header__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo-link img {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease;
}

.header__logo-link:hover img {
    transform: scale(1.05);
}

.header__menu, .header__auth {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header__link {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cannabis-green), var(--cannabis-light));
    transition: width 0.3s ease;
}

.header__link:hover::after,
.header__link--active::after {
    width: 100%;
}

.header__link:hover, .header__link--active {
    color: var(--primary);
}

.header__button--primary {
    background: linear-gradient(135deg, var(--cannabis-green), var(--cannabis-light));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.header__button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.4);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero__image-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 77, 30, 0.9) 0%, rgba(26, 77, 30, 0.6) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero__container {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero__description-banner {
    max-width: 700px;
    color: var(--white);
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__content-color {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--cannabis-lime);
    display: block;
    margin-bottom: 1.2rem;
}

.hero__tittle {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero__tittle span {
    color: var(--cannabis-lime);
    position: relative;
}

.hero__subtittle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin-bottom: 2rem;
}

/* --- INFO CARDS --- */
.info {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--gray-bg) 0%, var(--white) 100%);
    position: relative;
}

.info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--white);
    clip-path: ellipse(60% 100% at 50% 0%);
}

.info__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.info__cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.info__cards-content {
    background: var(--white);
    padding: 35px;
    border-radius: 50%;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 40px rgba(26, 77, 30, 0.1);
    border: 4px solid var(--cannabis-light);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.info__cards-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, transparent 100%);
    z-index: 0;
}

.info__cards-content:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 60px rgba(26, 77, 30, 0.2);
    border-color: var(--cannabis-green);
}

.info__cards-tittle {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.info__itemP {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.info__itemP::before {
    content: "✓ ";
    color: var(--cannabis-light);
    font-weight: bold;
}

.info__flyer {
    background: linear-gradient(135deg, var(--primary), var(--cannabis-green));
    padding: 60px;
    border-radius: 25px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.info__flyer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.info__flyer-tittle {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.hero__content-text {
    column-count: 2;
    column-gap: 40px;
    text-align: justify;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2rem;
    font-size: 1.05rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* --- INVITE SECTION --- */
.invite {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.invite__image-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.invite__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.invite__image-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 46, 17, 0.95) 0%, rgba(26, 77, 30, 0.9) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
}

.invite__container {
    position: relative;
    z-index: 10;
    width: 100%;
    text-align: center;
    padding: 0 2rem;
}

.invite__description-banner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.invite__title {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    color: white;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 10;
}

#si {
    background: linear-gradient(135deg, var(--cannabis-lime), var(--cannabis-light));
    color: var(--primary);
    padding: 1.3rem 3.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(139, 195, 74, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    z-index: 10;
}

#si:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(139, 195, 74, 0.6);
}

/* --- FORMULARIO --- */
.form {
    padding: 100px 0;
    background: var(--white);
}

.form__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(26, 77, 30, 0.12);
    background: linear-gradient(145deg, #ffffff, #f8faf8);
}

.form__text {
    text-align: center;
    margin-bottom: 3rem;
}

.form__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.form__subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.form__form fieldset {
    border: 2px solid var(--bg-light);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    background: white;
}

.form__form legend {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    padding: 0 1rem;
}

.form__form label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form__form input[type="text"],
.form__form input[type="email"],
.form__form input[type="tel"],
.form__form input[type="date"], 
.form__form select,
.form__form textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e2e8e2;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #fafdfa;
}

.form__form input:focus,
.form__form select:focus,
.form__form textarea:focus {
    outline: none;
    border-color: var(--cannabis-light);
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
    background: white;
}

.form__form button[type="submit"] {
    background: linear-gradient(135deg, var(--cannabis-green), var(--cannabis-light));
    color: white;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
    margin-right: 1rem;
}

.form__form button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
}

.form__form button[type="reset"] {
    background: white;
    color: var(--text-gray);
    padding: 1.2rem 2.5rem;
    border: 2px solid #e2e8e2;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form__form button[type="reset"]:hover {
    border-color: var(--text-gray);
    background: #f8faf8;
}

/* --- ACCORDION --- */
.accordion-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 2rem;
}

.accordion-container h3 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 3rem;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 2px solid var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 5px 20px rgba(26, 77, 30, 0.08);
}

.accordion-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-dark);
    background: var(--gray-bg);
    transition: all 0.3s ease;
    list-style: none;
    position: relative;
}

.accordion-header::-webkit-details-marker {
    display: none;
}

.accordion-header::after {
    content: '+';
    position: absolute;
    right: 2rem;
    font-size: 2rem;
    color: var(--cannabis-green);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.accordion-item[open] .accordion-header::after {
    transform: rotate(45deg);
}

.accordion-item[open] .accordion-header {
    background: linear-gradient(135deg, var(--cannabis-green), var(--cannabis-light));
    color: white;
}

.accordion-item[open] .accordion-header::after {
    color: white;
}

.accordion-content {
    padding: 2rem;
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* --- WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #FFF;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 5px 35px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(10deg);
}

/* --- FOOTER --- */
.footer {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--gray-bg) 100%);
    padding: 5rem 2rem 3rem;
    border-top: 3px solid var(--cannabis-light);
}

.footer__container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer__branding {
    text-align: left;
}

.footer__image {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer__image-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.footer__image-subtitle {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer__list {
    list-style: none;
}

.footer__item.footer__item--text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.footer__item {
    margin-bottom: 0.8rem;
}

.footer__item a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer__item a:hover {
    color: var(--cannabis-green);
    padding-left: 5px;
}

/* --- ESTADOS FINANCIEROS --- */
.financial-hero {
    position: relative;
    padding: 90px 0 60px;
    background: radial-gradient(circle at 20% 10%, rgba(139, 195, 74, 0.25) 0%, rgba(139, 195, 74, 0) 45%),
        radial-gradient(circle at 85% 25%, rgba(76, 175, 80, 0.22) 0%, rgba(76, 175, 80, 0) 50%),
        linear-gradient(135deg, rgba(15, 46, 17, 0.06) 0%, rgba(255, 255, 255, 1) 60%);
    overflow: hidden;
}

.financial-hero__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.financial-hero__tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--cannabis-green);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(76, 175, 80, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(26, 77, 30, 0.08);
    margin-bottom: 1.25rem;
}

.financial-hero__title {
    font-size: 3.2rem;
    line-height: 1.1;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
    max-width: 780px;
}

.financial-hero__subtitle {
    color: var(--text-gray);
    font-size: 1.15rem;
    max-width: 720px;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.financial-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.financial-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.4rem;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.25s ease;
}

.financial-hero__btn--primary {
    background: linear-gradient(135deg, var(--cannabis-green), var(--cannabis-light));
    color: white;
    box-shadow: 0 12px 30px rgba(76, 175, 80, 0.3);
}

.financial-hero__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(76, 175, 80, 0.4);
}

.financial-hero__btn--ghost {
    background: rgba(255, 255, 255, 0.85);
    color: var(--cannabis-green);
    border: 2px solid rgba(76, 175, 80, 0.25);
}

.financial-hero__btn--ghost:hover {
    background: white;
    border-color: rgba(76, 175, 80, 0.45);
    transform: translateY(-2px);
}

.financial-hero__decoration {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.financial-hero__blob {
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
    opacity: 0.75;
}

.financial-hero__blob--one {
    width: 420px;
    height: 420px;
    top: -160px;
    right: -120px;
    background: radial-gradient(circle at 30% 30%, rgba(139, 195, 74, 0.55) 0%, rgba(139, 195, 74, 0) 60%);
}

.financial-hero__blob--two {
    width: 320px;
    height: 320px;
    bottom: -140px;
    left: -120px;
    background: radial-gradient(circle at 40% 40%, rgba(76, 175, 80, 0.45) 0%, rgba(76, 175, 80, 0) 65%);
}

.financial-hero__blob--three {
    width: 220px;
    height: 220px;
    top: 110px;
    left: 55%;
    background: radial-gradient(circle at 40% 40%, rgba(26, 77, 30, 0.25) 0%, rgba(26, 77, 30, 0) 70%);
}

.financial {
    padding: 40px 0 90px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 248, 1) 100%);
}

.financial__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 2rem;
    align-items: start;
}

.financial__card {
    background: white;
    border: 1px solid rgba(226, 232, 226, 1);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 14px 40px rgba(26, 77, 30, 0.08);
}

.financial__title {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.financial__text {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.financial__file {
    font-weight: 800;
    color: var(--cannabis-green);
    word-break: break-word;
}

.financial__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.financial__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.2rem;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, var(--cannabis-green), var(--cannabis-light));
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.25);
    transition: all 0.25s ease;
}

.financial__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(76, 175, 80, 0.35);
}

.financial__btn--ghost {
    background: white;
    color: var(--cannabis-green);
    border: 2px solid rgba(76, 175, 80, 0.25);
    box-shadow: none;
}

.financial__btn--ghost:hover {
    background: rgba(248, 250, 248, 1);
    box-shadow: none;
}

.financial__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.financial__chip {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--primary);
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.18);
}

.financial__preview {
    background: white;
    border: 1px solid rgba(226, 232, 226, 1);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(26, 77, 30, 0.08);
}

.financial__iframe {
    width: 100%;
    height: 720px;
    border: 0;
    display: block;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero__tittle {
        font-size: 3rem;
    }

    .footer__container {
        grid-template-columns: 1fr 1fr;
    }

    .financial__container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header__container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .header__nav {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }

    .header__menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .hero__tittle {
        font-size: 2.2rem;
    }

    .hero__subtittle {
        font-size: 1.1rem;
    }

    .info {
        padding: 60px 0;
    }

    .info__container {
        gap: 2rem;
    }

    .info__cards {
        flex-direction: column;
        align-items: center;
    }

    .info__cards-content {
        width: 260px;
        height: 260px;
        padding: 25px;
    }

    .info__flyer {
        padding: 40px 25px;
    }

    .info__flyer-tittle {
        font-size: 1.8rem;
    }

    .hero__content-text {
        column-count: 1;
    }

    .invite__title {
        font-size: 1.8rem;
    }

    .form__container {
        padding: 40px 25px;
    }

    .form__form fieldset {
        padding: 1.5rem;
    }

    .form__form button[type="submit"],
    .form__form button[type="reset"] {
        width: 100%;
        margin-bottom: 1rem;
        margin-right: 0;
    }

    .accordion-container h3 {
        font-size: 1.8rem;
    }

    .footer__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__branding {
        text-align: center;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 25px;
        right: 25px;
        font-size: 30px;
    }

    .financial-hero__title {
        font-size: 2.2rem;
    }

    .financial__iframe {
        height: 520px;
    }
}
