:root {
    --color-bg: #f6f7f9;
    --color-text: #4A4A4A;
    --color-text-muted: #878484;
    --color-brand: #FFB81C;
    --color-brand-700: #FFB81C;
    --container: 69.375rem; 
    --hero-image: url("../images/landpage.png"); /* Caminho relativo ao index.css */
    --hero-overlay: rgba(0,0,0,.55);
}

* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body {
    font-family: 'Nunito', Arial, sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 16px;
}
.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 1.25rem;
}
/* HERO */
.hero {
position: relative;
min-height: 25rem;
display: grid;
place-items: center;
text-align: center;
color: white;
background: var(--hero-image) center/cover no-repeat;
isolation: isolate;
background-size: cover;
background-position: top center;
min-height: 28rem;
}
.footer-contact a,
.footer-contact p {
    text-decoration: none !important;
    color: black !important;
}
.footer-contact .icons-contato p,
.footer-contact .icons-contato i {
color: #000 !important;
transition: all 0.3s ease;
cursor: pointer;
}
.footer-contact .icons-contato p:hover,
.footer-contact .icons-contato i:hover {
  color: #111;
  transform: translateY(-2px);
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}
@media (max-width: 767px) {
    .hero {
        min-height: 22rem;
        background-position: top center;
    }
    .hero__cta {
        font-weight: 600 !important;
    }
    .section-head__title::after {
        width: 100%;
        max-width: 100%;
    }

    /* Ajustes para o modal de login */
    #signupModal .login-card {
        width: 90vw; /* Reduzido de 95vw para 90vw */
        padding: 1rem; /* Reduzido de 1.2rem para 1rem */
        margin: 0.5rem auto;
    }

    #signupModal .signup-form {
        padding: 0;
    }

    /* Ajustes CRÍTICOS para os inputs de login e senha */
    #signupModal .field__input,
    #signupModal input[type="email"],
    #signupModal input[type="password"] {
        width: 100%;
        max-width: 300px; /* Limite máximo para evitar inputs muito largos */
        padding: 0.6rem 0.7rem; /* Reduzido de 0.9rem para 0.6rem (vertical) e 0.7rem (horizontal) */
        font-family: 'Nunito', Arial, sans-serif;
        font-size: 0.85rem; /* Reduzido de 0.95rem para 0.85rem */
        margin: 0 auto 0.8rem; /* Centraliza e adiciona margem inferior */
        box-sizing: border-box; /* Garante que padding não aumente a largura */
        border: 1px solid #ccc;
        border-radius: 0.5rem;
    }

    /* Ajuste específico para o ícone de olho na senha */
    #signupModal .field__control {
        position: relative;
        width: 100%;
        max-width: 300px; /* Mesmo limite dos inputs */
        margin: 0 auto; /* Centraliza */
    }

    #signupModal .field__icon-right {
        right: 0.7rem; /* Alinha com o padding direito do input */
        top: 50%;
        transform: translateY(-50%);
        font-size: 1rem;
    }

    /* Botão Entrar - mesma largura dos inputs */
    #signupModal .login-btn {
        width: 100%;
        max-width: 300px; /* Mesmo limite dos inputs */
        margin: 0 auto 0.5rem; /* Centraliza */
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    /* Links "Redefinir senha" - empilhados e centralizados */
    #signupModal .login-form__links {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
        margin: 0.5rem auto 0;
        text-align: center;
        width: 100%;
        max-width: 300px;
    }

    #signupModal .login-form__links a,
    #signupModal .login-form__links span {
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .success-card {
        max-width: 350px;
        width: 90vw;
        padding: 1rem;
    }

    .glide__bullets {
        display: flex;
        justify-content: center;
        margin-top: 1rem;
        gap: 0.6rem;
    }

    .glide__bullet {
        width: 0.6rem;
        height: 0.6rem;
        border-radius: 50%;
        background-color: #ccc;
        border: none;
        cursor: pointer;
    }

    .glide__bullet--active {
        background-color: #FFB81C;
        width: 1.2rem;
        height: 1.2rem;
    }

    .sidebar-menu {
        position: fixed;
        left: 0;
        top: 0;
        width: 80vw;
        max-width: 280px;
        height: 100vh;
        background: #f8f9fa;
        z-index: 1000;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .sidebar-menu.active {
        transform: translateX(0);
    }

    .sidebar-menu .menu-item {
        width: 100%;
        padding: 0.75rem 1rem;
        box-sizing: border-box;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
@media (min-width: 768px) {
  #signupModal .signup-form {
    grid-template-columns: repeat(2, 1fr);
  }

  #signupModal .field--razao-social,
  #signupModal .field--nome-fantasia {
    grid-column: span 1;
  }

  #signupModal .field--telefone,
  #signupModal .field--estado {
    grid-column: span 1;
  }

  #signupModal .field--email,
  #signupModal .field--celular {
    grid-column: span 1;
  }

  #signupModal .login-card {
    max-height: none;
    overflow-y: auto !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .hero {
        min-height: 25rem;
        background-position: top center;
    }
}
@media (min-width: 1024px) {
    .hero {
        min-height: 40rem;
        background-position: top center;
    }
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
    z-index: -1;
}
.hero__headline {
    font-size: clamp(2rem, 3vw + 1rem, 3rem);
    font-family: 'Nunito', Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 1.25rem;
}
.hero__headline .accent { color: var(--color-brand); }
.hero__cta {
    padding: 0.875rem 1.75rem;
    border-radius: 999px;
    background: var(--color-brand);
    color: #0b0b0b;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Nunito', Arial, sans-serif;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    transition: background .2s ease;
}
.hero__cta-icon {
    width: 0; height: 0;
    border-left: 0.875rem solid currentColor;
    border-top: 0.5625rem solid transparent;
    border-bottom: 0.5625rem solid transparent;
}
.hero__cta:hover { background: var(--color-brand-700); }
/* CABEÇALHO SEÇÃO */
.section-head {
    padding: 3.125rem 0 1.25rem;
    text-align: center;
}
.section-head__title {
    font-size: clamp(2rem, 2.8vw + 1rem, 2.6rem);
    margin-bottom: -0.625rem;
    font-weight: 700;
    font-family: 'Nunito', Arial, sans-serif;
}
.section-head__subtitle {
    font-size: clamp(0.9rem, 1vw + 0.4rem, 1.1rem);
    color: var(--color-text-muted);
    margin-top: 0;
}
/* BLOCO DE CONTEÚDO */
.stack {
    display: grid;
    gap: 3.75rem;
    margin-bottom: 5rem;
}
.feature {
    display: grid;
    grid-template-columns: 6.25rem 1fr;
    gap: 1.875rem;
    align-items: flex-start;
}
.feature--reverse {
    grid-template-columns: 1fr 6.25rem;
}
@media (max-width: 50rem) {
    .feature, .feature--reverse {
    grid-template-columns: 1fr;
    text-align: center;
    }
    .feature--reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .metodologia-icon {
        display: block;
        margin: 0 auto 1rem;
        order: -1;
    }
}
.feature__icon {
    width: 5rem;
    height: 5rem;
    color: var(--color-brand);
    flex-shrink: 0;
    margin: auto;
}
.feature__title {
    font-size: clamp(1.4rem, 1.8vw + 0.8rem, 2rem);
    margin-bottom: 0.9375rem;
    font-weight: 600;
    font-family: 'Nunito', Arial, sans-serif;
}
.feature__text {
    font-size: clamp(1.05rem, 1.2vw + 0.5rem, 1.25rem);
    font-family: 'Nunito', Arial, sans-serif !important;
    color: var(--color-text-muted);
    text-align: justify;
}
/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 9999;
    transition: transform 0.3s ease;
    animation: float 2s ease-in-out infinite;
    background-color: #25D366;
    border-radius: 50%;
    width: 3.75rem;
    height: 3.75rem;

    display: flex;              /* 🔹 Centraliza ícone */
    align-items: center;
    justify-content: center;

    text-decoration: none;      /* 🔹 Remove a linha azul/roxa */
}
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-0.5rem);
    }
}
.whatsapp-icon {
    font-size: 2.2rem;  /* 🔹 menor para caber melhor no círculo */
    color: #fff;
    margin: 0;          /* 🔹 remove margens extras */
}
.whatsapp-float:hover {
    background-color: #20b859;
}
/* Perguntas Frequentes */
.faq-section {
    padding: 0.5rem;
    background-color: #f2f2f2;
}
.faq-section h2 {
    text-align: center;
    font-size: 1.3rem;
    font-family: 'Nunito', Arial, sans-serif;
    margin-bottom: 0.75rem;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.3rem;
}
.faq-item {
    background: white;
    border: 0.0625rem solid #ddd;
    border-radius: 0.3rem;
    padding: 0.5rem;
    font-size: 0.8rem;
    font-family: 'Nunito', Arial, sans-serif;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.faq-question-text {
    flex: 1;
}
.faq-question i {
    font-size: 0.6rem;
    color: #666;
    margin-left: 0.3rem;
}
.faq-item.active i {
    transform: rotate(180deg);
}
.faq-answer {
    display: none;
    margin-top: 0.4rem;
    color: #333;
    font-family: 'Nunito', Arial, sans-serif;
    font-size: 0.75rem;
    line-height: 1.2;
    padding: 0.3rem;
    background-color: #f9f9f9;
    border-radius: 0.2rem;
}
.faq-item.active .faq-answer {
    display: block;
}
@media (min-width: 48rem) {
    .faq-section {
        padding: 2rem;
    }

    .faq-section h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .faq-grid {
        grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
        gap: 1rem;
    }

    .faq-item {
        padding: 1rem;
        font-size: 1rem;
        border-radius: 0.5rem;
    }

    .faq-question i {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }

    #signupModal .signup-form {
    grid-template-columns: repeat(2, 1fr); 
  }
}

.event-section {
    background-color: rgba(250, 247, 237, 1) !important;
    margin-top: 5rem !important;
    background-color: #f9f9f9 !important;
    padding: 0.5rem !important;
    text-align: center;
    max-width: 50rem !important;
    margin: 0 auto !important;
    padding-bottom: 1rem !important;
    border-radius: 0.5rem;
    
}

.glide {
        position: relative;
        width: 100%;
        margin: 0;
        /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12) !important; */
        border-radius: 12px !important;
    }

.event-section h2 {
    font-size: 2.2rem !important;
    margin-bottom: 0.75rem !important;
}

.carousel-container {
    max-width: 35rem !important;
    width: 100%;
    border-radius: 12px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

.glide__track {
        min-height: 275px;
        height: auto;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12) !important;
        border-radius: 12px !important;
    }

    .glide__slides {
        list-style: none;
        margin: 0;
        padding: 0;
        height: 100%;
        border-radius: 12px !important;
    }

    .glide__slide {
        width: 100%;
        height: 100%;
    }

.glide__bullets {
  position: absolute !important;
  bottom: 10px !important; 
  left: 0;
  right: 0;
  z-index: 3;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0.6rem !important;
  padding: 0 !important;
}

.glide__bullet {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.96) !important;
  border: none !important;
  outline: none !important;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.glide__bullet--active {
  background: #FFB81C !important;
}

.event-card {
    max-width: 100% !important;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: none !important;
    border: none !important;
}

.event-image {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0.5rem !important;
    border-radius: 12px !important;
    cursor: pointer;
}

.event-image img {
  width: 100% !important;
  max-width: 850px !important; 
  height: auto !important;   
  object-fit: cover;
  border-radius: 12px !important;
  /* margin-left: 2rem !important;  */
  filter: brightness(1.05);  
  border: none !important;
  box-shadow: none !important;
}

.event-info {
    padding: 0.8rem !important;
    text-align: left;
}

.event-info span {
    display: inline-block;
    background-color: #FFB81C;
    padding: 0.3rem 0.7rem !important;
    font-weight: 600;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem !important;
    font-size: 0.9rem !important;
}

.event-info h3 {
    margin: 0.4rem 0 !important;
    font-size: 1.3rem !important; 
    margin-bottom: 1.2rem !important;
    font-weight: 700;
    color: #222;
}

.event-info p {
    margin-bottom: 1.5rem !important;
    color: #444;
    font-size: 1.05rem !important; 
    line-height: 1.4;
}

.event-info a {
    display: inline-block;
    padding: 0.45rem 0.9rem !important; 
    background-color: #FFB81C;
    border-radius: 0.5rem;
    text-decoration: none;
    color: black;
    font-size: 0.95rem !important; 
    font-weight: 500;
    transition: all 0.3s ease;
}

.event-info a i {
  font-size: 0.9rem !important;
  margin-left: 0.4rem !important;
  vertical-align: middle;
}

.event-info a:hover {
    background-color: #ffca45;
    transform: scale(1.05);
}

@media (max-width: 48rem) {
    .event-section {
        max-width: 90% !important;
    }

    .event-card {
        flex-direction: column;
    }

    .event-image img {
        height: 12rem !important;
    }
}

/* Rodapé */
footer {
    background-color: #FFB81C;
    color: black;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    font-family: 'Nunito', Arial, sans-serif;
    gap: 2rem;
    align-items: start;
}
.footer-social,
.footer-contact {
    margin-top: -1.7rem;
}
footer h3, footer h4 {
    margin-bottom: 1rem;
    font-family: 'Nunito', Arial, sans-serif;
}
footer p {
    font-size: 0.9rem;
    font-family: 'Nunito', Arial, sans-serif;
}
.social-icons a {
    margin-right: 0.7em;
    font-size: 1.6rem;
    color: black;
    text-decoration: none;
}
.footer-bottom2 {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 1.2rem;
    margin-top: 1rem;
    border-top: 0.0625rem solid rgb(0, 0, 0);
    padding-top: 1rem;
    font-family: 'Nunito', Arial, sans-serif !important;
    color: #000 !important;
}
.logo-container p {
    font-size: 1.2rem;
}
/* Carousel */
.glide__bullets {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
    gap: 0.5rem;
}
.glide__bullet {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    margin: 0;
    cursor: pointer;
}
.glide__bullet--active {
    background-color: #FFB81C;
}
/* Responsive */
@media (min-width: 48rem) {
    .event-card {
        flex-direction: row;
    }
    .event-info, .event-image {
        flex: 1;
    }
    .event-image {
        margin-top: 0;
    }
    .event-image img {
        height: auto;
        /* max-height: 15rem; */
    }
}
@media (min-width: 56.25rem) {
    footer {
        grid-template-columns: 1.8fr 2.5fr 2.2fr;
        align-items: start;
        font-size: 1.5rem;
    }
    .footer-social {
        justify-self: center;
        text-align: left;
    }
    .icons-contato i {
        font-size: 1.4rem;
        margin-right: 0.5rem;
    }
    .icons-contato p {
        font-size: 1.1rem;
        font-family: 'Nunito', Arial, sans-serif;
    }
    .footer-contact {
        text-align: left;
        padding-left: 2.2rem;
    }
}
@keyframes fadeInUp {
    from {
    opacity: 0;
    transform: translateY(20px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
@keyframes floatShadow {
    0% { box-shadow: 0 10px 20px rgba(255, 184, 28, 0.2); }
    50% { box-shadow: 0 15px 25px rgba(255, 184, 28, 0.3); }
    100% { box-shadow: 0 10px 20px rgba(255, 184, 28, 0.2); }
}
.hero {
    animation: fadeIn 1.2s ease-out forwards;
}
.hero__headline {
    animation: fadeInUp 0.8s ease-out forwards;
}
.hero__cta {
    animation: fadeInUp 1s ease-out 0.3s forwards, pulse 2s infinite 1.5s;
    transition: all 0.3s ease;
}
.hero__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 184, 28, 0.4);
}
.feature__icon {
    animation: fadeIn 0.6s ease-out forwards;
    transition: transform 0.3s ease, color 0.3s ease;
}
.feature:hover .feature__icon {
    transform: scale(1.1);
    color: var(--color-brand-700);
}
.feature {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.feature.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.whatsapp-float {
    animation: float 2s ease-in-out infinite, floatShadow 3s ease-in-out infinite;
}
.faq-item {
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}
.faq-item.active {
    border-left: 4px solid var(--color-brand);
    background: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}
.faq-question {
    transition: all 0.2s ease;
    cursor: pointer;
}
.faq-item.active .faq-question {
    font-weight: 600;
}
.event-card {
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}
.event-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* .event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
} */
footer {
    animation: fadeInUp 0.8s ease-out forwards;
}
.social-icons a {
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}
.social-icons a:hover {
  transform: translateY(-3px) scale(1.15);
  color: #111;
  text-shadow: 
    0 0 5px rgba(0, 0, 0, 0.5),
    0 0 10px rgba(0, 0, 0, 0.3),
    0 2px 5px rgba(0, 0, 0, 0.2);
}
.modal-content {
    animation: fadeInUp 0.5s ease-out forwards;
}
.feature:nth-child(1) { animation-delay: 0.2s; }
.feature:nth-child(2) { animation-delay: 0.4s; }
.feature:nth-child(3) { animation-delay: 0.6s; }
html {
    scroll-behavior: smooth;
}
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}
::-webkit-scrollbar {
    width: 0.8rem; 
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 1rem; 
}
::-webkit-scrollbar-thumb {
    background: #FFB81C;
    border-radius: 1rem; 
    border: 2px solid #f1f1f1; 
}
::-webkit-scrollbar-thumb:hover {
    background: #e6a212; 
}
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
}
.video-modal-content {
    background-color: transparent;
    margin: 5% auto;
    padding: 0;
    width: 80%;
    max-width: 800px;
    position: relative;
    border-radius: 10px;
}
.close-video-modal {
    position: absolute;
    top: -40px;
    right: -40px;
    color: #d6d2d2ff;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.2s; 
}
.close-video-modal:hover {
  color: #e6a800 !important; 
}
#videoPlayer {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}
.modal.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.section-head__title {
font-size: clamp(1.5rem, 2.8vw + 1rem, 2.6rem);
margin-bottom: 0.625rem;
font-weight: 700;
position: relative;
display: inline-block;
padding-bottom: 0.5rem;
}
.section-head__title::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 34rem; 
height: 0.1875rem; 
background-color: var(--color-brand);
}
.event-section h2 {
font-size: 2.2rem;
margin-bottom: 2.5rem;
position: relative;
display: inline-block;
padding-bottom: 0.5rem;
}
.event-section h2::after {
    content: "";
    position: absolute;
    left: 0;
    top: -0.5rem;
    width: 100%;
    max-width: 22rem;
    height: 0.1875rem;
    background-color: var(--color-brand);
    transform: translateX(0);
}
.success-modal {
display: none;
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.6);
align-items: center;
justify-content: center;
z-index: 10000;
}
.success-card {
    background: #FFB81C;
    padding: 1.5rem;
    border-radius: 12px;
    max-width: 460px;
    text-align: left;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    width: 90vw; 
}
.success-title {
    font-size: 1.5rem;
    font-family: 'Nunito', Arial, sans-serif;
    margin-bottom: 0.5rem;
    color: #000;
    font-weight: bold;
}
.success-message {
    font-size: 1rem;
    font-family: 'Nunito', Arial, sans-serif;
    color: #000;
}
.success-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 3rem; 
    cursor: pointer;
    color: white; 
}
.success-close:hover {
    color: #e7e4e4ff;
}
    body {
        font-family: 'Nunito', sans-serif;
        margin: 0;
        padding: 0;
        background-color: #f5f5f5;
    }
    /* Eventos */
    .event-section {
        background-color: #fff;
        padding: 2rem;
        text-align: center;
        padding-bottom: 4rem;
    }
    .event-section h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
        position: relative;
    }
    .event-card {
    flex-direction: column;
    height: auto;
    }
    .event-image img {
    height: 12.5rem;
    object-fit: cover;
    }
    .event-info {
        padding: 1.5rem;
        text-align: left;
    }
    .event-info span {
        display: inline-block;
        background-color: #FFB81C;
        padding: 0.3rem 0.75rem;
        font-weight: 600;
        border-radius: 0.8rem;
        margin-bottom: 1rem;
    }
    .event-info h3 {
        margin: 0.5rem 0;
        margin-top: 1rem;
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }
    .event-info p {
        margin-bottom: 1.5rem;
        color: #555;
        font-size: 1rem;
    }
    .event-info a {
        display: inline-block;
        padding: 0.5rem 1rem;
        background-color: #FFB81C;
        border-radius: 0.8rem;
        text-decoration: none;
        color: black;
        font-size: 1.1rem;
        font-weight: 500;
    }
    a i.fa-arrow-up-right-from-square {
        font-size: 0.9rem;
        margin-left: 0.5rem;
    }
    .event-image {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        padding: 1rem;
        box-sizing: border-box;
    }
    .event-image img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 1rem;
        filter: brightness(1.05);
    }
    /* Rodapé */
    footer {
        background-color: #FFB81C;
        color: black;
        padding: 2rem;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: start;
    }
    .footer-social,
    .footer-contact {
        margin-top: -1.7rem;
    }
    footer h3, footer h4 {
        margin-bottom: 1rem;
    }
    footer p {
        font-size: 0.9rem;
    }
    .social-icons a {
        margin-right: 0.7em;
        font-size: 1.6rem;
        color: black;
        text-decoration: none;
    }
    .footer-bottom2 {
        grid-column: 1 / -1;
        text-align: center;
        font-size: 1.2rem;
        margin-top: 1rem;
        border-top: 0.1rem solid rgb(0, 0, 0);
        padding-top: 1rem;
        font-family: 'Nunito', Arial, sans-serif !important;
        color: #000 !important;
    }
    .logo-container p {
        font-size: 1.2rem;
    }
    /* Carousel Dots */
    .glide__bullets {
        display: flex;
        justify-content: center;
        margin-top: 0.5rem;
        gap: 0.5rem;
    }
    .glide__bullet {
        width: 0.6rem;
        height: 0.6rem;
        border-radius: 50%;
        background-color: #ccc;
        border: none;
        margin: 0;
        cursor: pointer;
    }
    .glide__bullet--active {
        background-color: #FFB81C;
    }
    /* ===== MODAL DE ERRO ===== */
    .error-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        justify-content: center;
        align-items: center;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .error-card {
        background: white;
        border-radius: 10px;
        width: 90%;
        max-width: 400px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        text-align: center;
        position: relative;
        padding: 25px;
        animation: modalFadeIn 0.3s ease;
    }
    
    .error-icon {
        width: 50px;
        height: 50px;
        background-color: #ffebee;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #d32f2f;
        font-size: 1.6rem;
        margin: 0 auto 15px;
    }
    
    .error-icon i {
        color: #d32f2f;
    }
    
    .error-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .error-message {
        font-size: 0.95rem;
        color: #555;
        line-height: 1.5;
        margin-bottom: 20px;
        text-align: left;
    }
    
    .error-btn {
        background-color: #FFB81C;
        color: #333;
        border: none;
        border-radius: 5px;
        padding: 10px 20px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
        font-size: 0.95rem;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .error-btn:hover {
        background-color: #e0a800;
        transform: translateY(-1px);
    }
    
    .error-close {
        position: absolute;
        top: 10px;
        right: 15px;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: #777;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .error-close:hover {
        color: #333;
    }

    .required-field {
        color: #ff4444;
        font-weight: bold;
        margin-left: 3px;
    }
    
    @keyframes modalFadeIn {
        from {
            transform: translateY(-20px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* Responsive */
    @media (min-width: 768px) {
        .event-card {
            flex-direction: row;
        }
        .event-info, .event-image {
            flex: 1;
        }
        .event-image {
            margin-top: 0;
        }

        #signupModal .signup-form {
    grid-template-columns: repeat(2, 1fr);
  }

  #signupModal .field--full {
    grid-column: 1 / -1;
  }
  #signupModal .login-card {
    max-height: none;
    overflow-y: hidden;
  }
    }

    @media (max-width: 480px) {
        .error-card {
            width: 95%;
            padding: 20px 15px;
        }
    
        .error-title {
            font-size: 1.1rem;
        }
    
        .error-message {
            font-size: 0.9rem;
        }
    
        .error-btn {
            padding: 9px 18px;
            font-size: 0.9rem;
        }
    }

    @media (min-width: 900px) {
        footer {
            grid-template-columns: 1.8fr 2.5fr 2.2fr;
            align-items: start;
            font-size: 1.5rem;
        }
        .footer-social {
            justify-self: center;
            text-align: left;
        }
        .icons-contato i {
            font-size: 1.4rem;
            margin-right: 0.5rem;
        }
        .icons-contato p {
            font-size: 1.1rem;
        }
        .footer-contact {
            text-align: left;
            padding-left: 2.2rem;
        }
    }
.login-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  overflow-y: hidden;
}

.login-modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

/* --- CARD PRINCIPAL (branco) --- */
.login-card {
  position: relative;
  background: #fff;
  border-radius: 1.75rem;
  font-family: 'Nunito', Arial, sans-serif;
  width: 95%;
  max-width: 26.25rem;
  padding: 1.5rem 1rem;
  box-shadow: 0 0.625rem 1.875rem rgba(0,0,0,0.25);
  text-align: center;
}

/* --- CARTELA AMARELA ATRÁS --- */
.login-card::before {
  content: "";
  position: absolute;
  inset: -1.25rem;               /* ~20px de “moldura” ao redor (ajuste a gosto) */
  background: var(--color-brand, #FFB81C);
  border-radius: calc(1.75rem + 0.5rem); /* arredondamento maior que o do card branco */
  box-shadow: 0 0.5rem 1.2rem rgba(0,0,0,.12);
  z-index: -1;                   /* fica atrás do conteúdo do card */
}

/* --- Responsivo --- */
@media (max-width: 30rem) {      /* <= 480px */
  .login-card { padding: 1.5rem 1.2rem 1.2rem; }
  .login-card::before {
    inset: -0.9rem;              /* ~14px */
    border-radius: calc(1.4rem + 0.4rem);
  }
}

/* --- DEMAIS ESTILOS (mantidos) --- */
.login-card__close {
  position: absolute; top: 1rem; right: 1rem;
  border: none; background: none; font-size: 2rem; cursor: pointer; color: #111; transition: color 0.2s; 
}
.login-card__close:hover {
  color: #e6a800 !important; 
}
.login-card__title { font-size: 2rem; font-weight: bold; margin-bottom: 1.5rem; font-family: 'Nunito', Arial, sans-serif;}
.login-form { display: grid; gap: 1rem; text-align: left; }

.field__label { display: block; margin-bottom: .4rem; font-weight: 600; font-family: 'Nunito', Arial, sans-serif;}
.field__control { position: relative; }
.field__input {
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  font-family: 'Nunito', Arial, sans-serif;
}
.field__input::placeholder { color: #bbb; }
.field__input:focus { border-color: #FFB81C; box-shadow: 0 0 0 0.1875rem rgba(255,184,28,.25); }

.field__icon-right {
  position: absolute; right: .5rem; top: 50%; transform: translateY(-50%);
  border: none; background: none; cursor: pointer; color: #555; font-size: 1.1rem;
}

.login-form__links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap; 
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.login-form__links a,
.login-form__links span {
  white-space: nowrap; 
  font-size: 0.85rem; 
  flex-shrink: 0; 
}

.login-form__links a {
  margin-right: auto; 
}

.login-form__links span {
  display: flex;
  align-items: center;
  gap: 0.3rem; 
  white-space: nowrap;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.link { color: #4667ff; text-decoration: none; }
.link:hover { text-decoration: underline; }

.login-btn {
  margin-top: 0.5rem;
  width: 100%;
  padding: 0.9rem;
  background: #000 !important;
  color: #FFB81C !important;
  font-weight: bold;
  font-family: 'Nunito', Arial, sans-serif !important;
  font-size: 1rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 0.375rem 0.9375rem rgba(0,0,0,0.2);
}

.login-btn:hover {
  background-color: #111 !important;
  box-shadow: 0 0.5rem 1.2rem rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
  transition: all 0.2s ease-in-out;
}

.login-card__brand { margin-top: 1.5rem; text-align: center; font-weight: bold; color: #000; }

.field input:not([type="checkbox"]), .field select, .field textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: 1px solid #ccc;
  font-family: 'Nunito', Arial, sans-serif;
  box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,.1);
  font-size: 1rem;
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--color-brand, #FFB81C);
  box-shadow: 0 0 0 0.1875rem rgba(255,184,28,.25);}


  /* Cabeçalho do cadastro */
.signup-head { text-align: center; margin-bottom: 1rem; }
.signup-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: .02em;
  margin: 0 0 .25rem 0;
}
.signup-subtitle {
  margin: 0;
  font-size: 1rem;
  color: #4a4a4a;
  font-family: 'Nunito', Arial, sans-serif;
}

/* Grid dos campos (2 colunas no desktop, 1 no mobile) */
.signup-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 1.2rem;
  margin-top: .75rem;
}
.field { display: grid; gap: .35rem; }
.field--full { grid-column: 1 / -1; }

@media (min-width: 48rem) { /* ~768px */
  .signup-form { grid-template-columns: 1fr 1fr; }
}

/* Ícones nos labels */
.label-icon {
  color: var(--color-brand, #FFB81C);
  margin-right: .5rem;
}

/* Botão de busca (CNPJ) à direita do input */
.field__icon-button {
  position: absolute;
  right: .5rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 1.05rem;
  color: #6b6b6b;
  padding: .4rem .5rem;
  border-radius: 999px;
}
.field__icon-button:hover { background: rgba(0,0,0,.05); }

/* Linha de ações (Cancelar | Enviar) */
.actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: .5rem;
}

/* Botão secundário (cancelar) */
.btn-secondary {
  margin-top: 0.5rem;
  width: 100%;
  padding: 0.9rem;
  background: #fff;
  color: #111;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 0.375rem 0.9375rem rgba(0,0,0,0.2);
  transition: all 0.2s ease-in-out;
  font-family: 'Nunito', Arial, sans-serif !important;
}

.btn-secondary:hover {
  background-color: #f0f0f0;
  box-shadow: 0 0.5rem 1.2rem rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

#signupModal .login-card {
  max-height: 85vh;
  overflow-y: hidden;
  overflow-x: hidden; 
  width: min(95vw, 50rem);
  max-width: 50rem;
  padding: 1.5rem;
  margin: 1rem auto; 
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.2);
  border-radius: 1.75rem;
  position: relative;
}

#signupModal .login-card::before {
  content: "";
  position: absolute;
  inset: -1.25rem;
  background: var(--color-brand, #FFB81C);
  border-radius: calc(1.75rem + 0.5rem);
  box-shadow: 0 0.5rem 1.2rem rgba(0, 0, 0, 0.12);
  z-index: -1;
  width: calc(100% + 2.5rem); 
  height: calc(100% + 2.5rem); 
}

/* 2) Título/subtítulo menores (não quebrar/cortar) */
#signupModal .signup-head {
  margin-bottom: 1.5rem;
}

#signupModal .signup-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  text-align: center;
}

#signupModal .signup-subtitle {
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 1.5rem;
}

/* 3) Grid em 2 colunas com colunas mínimas (espalha horizontalmente) */
#signupModal .signup-form {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 0.5rem;
}

#signupModal .field--cnpj {
  grid-column: 1 / -1;
}

#signupModal .field--razao-social,
#signupModal .field--nome-fantasia {
  grid-column: span 1;
}

#signupModal .field--telefone,
#signupModal .field--estado {
  grid-column: span 1;
}

#signupModal .field--email,
#signupModal .field--celular {
  grid-column: span 1;
}

#signupModal .field--nome-contato {
  grid-column: 1 / -1;
}

/* Campos que precisam ocupar a linha toda */
#signupModal .signup-form .field--full { grid-column: 1 / -1; }

#signupModal .field {
  width: 100%;
  box-sizing: border-box;
}

#signupModal .field__input {
  padding: 0.9rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  transition: border-color 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

#signupModal .field__input:focus {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 0.25rem rgba(255, 184, 28, 0.25);
}

/* 4) Inputs ligeiramente mais enxutos */
#signupModal .field__input,
#signupModal .field input:not([type="checkbox"]),
#signupModal .field select,
#signupModal .field textarea {
  padding: 0.8rem 1rem;          /* menor altura do campo */
  font-size: 0.95rem;
}

/* Botão de busca do CNPJ acompanha a nova altura */
#signupModal .field__icon-button { font-size: 1rem; padding: .35rem .45rem; }

/* 5) Área de ações enxuta */
#signupModal .actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  grid-column: 1 / -1;
}

#signupModal .field__label {
  font-size: 1rem;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

/* 6) Quebra de linha segura: não corta palavras no meio */
#signupModal .login-card,
#signupModal .signup-title,
#signupModal .signup-subtitle,
#signupModal .field__label {
  word-break: normal;
  overflow-wrap: break-word;     /* quebra em limites de palavra se precisar */
}

#signupModal .btn-secondary,
#signupModal .login-btn {
  flex: 1;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

#signupModal .login-btn {
  background-color: #000;
  color: var(--color-brand);
}

#signupModal .login-btn:hover {
  filter: brightness(1.1);
}

@media (max-width: 48rem) {
  #signupModal .signup-form {
    grid-template-columns: 1fr; 
  }
  #signupModal .field--full {
    grid-column: 1 / -1;
  }
  #signupModal .login-card {
    width: 95vw; 
    padding: 1.2rem;
    max-height: 90vh;
    overflow-y: auto;
  }
}

@media (max-width: 42rem) {    
  #signupModal .login-card { width: 92vw; }
  #signupModal .signup-form { grid-template-columns: 1fr; }
}

@media only screen and (max-width: 375px) and (max-height: 667px) {
  #signupModal .login-card {
    width: 90vw !important;
    max-width: none !important;
    padding: 1rem !important;
  }

  #signupModal .field__input,
#signupModal input[type="email"],
#signupModal input[type="password"] {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0.6rem 2.2rem 0.6rem 0.7rem !important; 
  font-size: 0.85rem !important;
  margin-bottom: 0.7rem !important;
  box-sizing: border-box !important;
  border: 1px solid #ccc !important;
  border-radius: 0.5rem !important;
}

  #signupModal .field__control {
    width: 100% !important;
    margin-bottom: 0.5rem !important;
  }

  #signupModal .login-btn {
    width: 100% !important;
    padding: 0.7rem !important;
    font-size: 0.9rem !important;
    margin-top: 0.5rem !important;
  }

  #signupModal .login-form__links {
    flex-direction: column !important;
    gap: 0.4rem !important;
    margin-bottom: 0.5rem !important;
    text-align: center !important;
  }

  #signupModal .login-form__links a,
  #signupModal .login-form__links span {
    font-size: 0.75rem !important;
    white-space: nowrap !important;
  }

  #signupModal .field__icon-right {
    right: 0.6rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 1rem !important;
  }

  #signupModal .login-card__title {
    font-size: 1.4rem !important;
    margin-bottom: 1rem !important;
  }

  #signupModal .login-form {
    padding: 0 !important;
    gap: 0.8rem !important;
  }
}

@media only screen and (max-width: 360px) and (max-height: 740px) {
    #signupModal .login-card {
        width: 92vw !important;
        padding: 0.8rem !important;
        margin: 0.3rem auto !important;
    }

    #signupModal .field__input,
    #signupModal input[type="email"],
    #signupModal input[type="password"] {
        width: 100% !important;
        max-width: 280px !important;
        padding: 0.5rem 0.6rem !important;
        font-size: 0.8rem !important;
        margin: 0 auto 0.6rem !important;
        box-sizing: border-box !important;
    }

    #signupModal .field__control {
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto !important;
        position: relative !important;
    }

    #signupModal .field__icon-right {
        right: 0.6rem !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        font-size: 0.9rem !important;
    }

    #signupModal .login-btn {
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto 0.4rem !important;
        padding: 0.6rem !important;
        font-size: 0.85rem !important;
    }

    #signupModal .login-form__links {
        flex-direction: column !important;
        gap: 0.3rem !important;
        margin: 0.4rem auto 0 !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 280px !important;
    }

    #signupModal .login-form__links a,
    #signupModal .login-form__links span {
        font-size: 0.7rem !important;
        white-space: normal !important; 
        word-break: break-word !important;
    }

    #signupModal .login-form__links span {
        display: block !important;
        margin: 0 auto !important;
        max-width: 100% !important;
    }

    #signupModal .login-card__title {
        font-size: 1.3rem !important;
        margin-bottom: 0.8rem !important;
    }

    #signupModal .login-form {
        padding: 0 !important;
        gap: 0.5rem !important;
    }
}

@media only screen and (max-width: 344px) and (max-height: 882px) {
    #signupModal * {
        box-sizing: border-box !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    #signupModal .login-modal {
        align-items: flex-start !important;
        padding-top: 2rem !important;
    }

    #signupModal .login-card {
        width: 94vw !important;
        max-width: none !important;
        padding: 0.8rem !important;
        margin: 0 auto !important;
        border-radius: 1rem !important;
    }

    #signupModal .login-card::before {
        inset: -0.8rem !important;
        border-radius: calc(1rem + 0.4rem) !important;
    }

    #signupModal .login-card__title {
        font-size: 1.1rem !important;
        margin-bottom: 0.7rem !important;
        text-align: center !important;
    }

    #signupModal .login-form {
        padding: 0 !important;
        gap: 0.5rem !important;
        width: 100% !important;
    }

    #signupModal .field__control {
        width: 100% !important;
        max-width: 260px !important;
        margin: 0 auto !important;
        position: relative !important;
    }

    #signupModal .field__input,
    #signupModal input[type="email"],
    #signupModal input[type="password"] {
        width: 100% !important;
        max-width: 260px !important;
        padding: 0.5rem 2rem 0.5rem 0.6rem !important;
        font-size: 0.75rem !important;
        margin: 0 auto 0.5rem !important;
        border-radius: 0.4rem !important;
        text-align: left !important;
    }

    #signupModal .field__icon-right {
        right: 0.6rem !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        font-size: 0.85rem !important;
        z-index: 10 !important;
    }

    #signupModal .field__label {
        font-size: 0.75rem !important;
        margin-bottom: 0.3rem !important;
        text-align: left !important;
    }

    #signupModal .login-btn {
        width: 100% !important;
        max-width: 260px !important;
        margin: 0.5rem auto 0 !important;
        padding: 0.6rem !important;
        font-size: 0.8rem !important;
        border-radius: 0.4rem !important;
    }

    #signupModal .login-form__links {
        flex-direction: column !important;
        gap: 0.3rem !important;
        margin: 0.5rem auto 0 !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 260px !important;
    }

    #signupModal .login-form__links a,
    #signupModal .login-form__links span {
        font-size: 0.65rem !important;
        white-space: normal !important;
        word-break: break-word !important;
        line-height: 1.2 !important;
    }

    #signupModal .login-form__links span {
        display: block !important;
        margin: 0 auto !important;
        max-width: 100% !important;
    }

    #signupModal .login-card__close {
        font-size: 1.5rem !important;
        top: 0.5rem !important;
        right: 0.5rem !important;
    }

    #signupModal .login-modal.show {
        padding: 0.5rem !important;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1024px) and (min-height: 600px) and (max-height: 600px) {
    #signupModal .login-card {
        max-height: 80vh !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        padding: 1.5rem !important;
    }

    #signupModal .signup-form {
        overflow: visible !important;
        padding-bottom: 1rem !important;
    }

    #signupModal .field__control {
        margin-bottom: 0.8rem !important;
    }

    #signupModal .login-btn {
        margin-bottom: 1.5rem !important;
    }
}

@media only screen and (min-width: 1280px) and (max-width: 1280px) and (min-height: 800px) and (max-height: 800px) {
    #signupModal .login-card {
        max-height: 85vh !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        padding: 1.5rem !important;
    }

    #signupModal .signup-form {
        overflow: visible !important;
        padding-bottom: 1rem !important;
    }

    #signupModal .field {
        margin-bottom: 0.7rem !important;
    }

    #signupModal .field__input {
        margin-bottom: 0.8rem !important;
    }

    #signupModal .login-btn {
        margin-bottom: 1.5rem !important;
    }

    #signupModal .login-form__links {
        margin-bottom: 1rem !important;
    }
}