/* ============================================
   Modelo1 — Replicação fiel de
   https://modelo01.quadrafacil.com.br/
   Font: Poppins | Primary: #FF5722 | Secondary: #FF5722 (laranja sólido, igual ao primary)
   ============================================ */

:root {
    --primary: #FF5722;
    --primary-dark: #E64A19;
    --secondary: #FF5722;
    --text-dark: #171c24;
    --text-gray: #555;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --card-shadow: 0px 3px 45px 0px rgba(0,0,0,0.13);
    --card-shadow-dark: 0px 3px 45px 0px rgba(17,17,17,0.40);
    --btn-shadow: 0px 6px 35px 0px rgba(17,17,17,0.40);
}

/* ============ RESET & BASE ============ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; font-size: 14px; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: #fff;
    line-height: 1.6;
}

a { text-decoration: none; transition: color 0.2s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

/* ============ BUTTONS ============ */
.btn-orange {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 15px 50px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    box-shadow: var(--btn-shadow);
    transition: background 0.2s, box-shadow 0.2s;
}
.btn-orange:hover { background: var(--primary-dark); color: #fff; box-shadow: 0px 6px 35px 0px rgba(0,0,0,0.55); }

.btn-gradient {
    display: inline-block;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
    color: #fff;
    padding: 16px 41px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: box-shadow 0.2s;
}
.btn-gradient:hover { color: #fff; box-shadow: 0px 6px 35px 0px rgba(0,0,0,0.55); }

.btn-outline-white {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.7);
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); color: #fff; }

/* ============ HEADER ============ */
.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0px 3px 35px 0px rgba(0,0,0,0.16);
}

/* Faixa laranja sólida no topo do header */
.site-header::before {
    content: '';
    display: block;
    height: 10px;
    background: var(--primary);
}

/* Header — 1 linha: logo | nav (centro) | social (direita) */
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Bloco direita: social + botão mobile */
.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    max-width: 100%;
    width: auto;
    height: auto;
}

.header-social {
    display: flex;
    gap: 14px;
    align-items: center;
}

.header-social a {
    color: var(--primary);
    font-size: 18px;
    line-height: 1;
    transition: opacity 0.2s;
}
.header-social a:hover { opacity: 0.7; }

/* Nav centralizado no meio da linha */
.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-menu {
    display: flex;
    padding: 0;
    margin: 0;
}

.main-menu li a {
    display: block;
    padding: 14px 18px;
    color: var(--text-dark);
    font-size: 17px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 24px;
    position: relative;
    transition: color 0.2s;
}

.main-menu li a:hover,
.main-menu li.active a {
    color: var(--primary);
}

.main-menu li.active a::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
}

/* Reserva Online — link simples sem botão */
.main-menu li.menu-reserva a {
    color: var(--text-dark);
    background: none;
    border-radius: 0;
    margin: 0;
    padding: 14px 18px;
    font-size: 17px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0;
}
.main-menu li.menu-reserva a:hover { background: none; color: var(--primary); }
.main-menu li.menu-reserva a::after { display: none; }

/* Mobile nav */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 24px;
    padding: 4px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    border-top: 1px solid #eee;
    padding: 8px 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu li a {
    display: block;
    padding: 12px 24px;
    color: var(--text-dark);
    font-size: 0.9rem;
    border-bottom: 1px solid #f5f5f5;
}
.mobile-menu li.active a { color: var(--primary); }

/* ============ HERO SECTION ============ */
.hero-section {
    background: #fff;
    overflow: hidden;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 0 30px;
    display: flex;
    align-items: stretch;
    min-height: 520px;
}

.hero-text {
    flex: 0 0 46%;
    max-width: 46%;
    padding: 60px 40px 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.hero-label {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 5px;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 27px;
    line-height: 30px;
}

.hero-heading {
    font-size: 3.9375rem;
    font-weight: 600;
    line-height: 65px;
    letter-spacing: -1px;
    margin-bottom: 47px;
    max-width: 766px;
}

/* Laranja sólido — igual ao original */
.hero-heading .orange {
    display: inline;
    color: var(--primary);
}

.hero-heading .dark {
    display: block;
    color: var(--text-dark);
}

.hero-desc {
    font-size: 1.375rem;
    font-weight: 300;
    color: var(--text-gray);
    margin-bottom: 36px;
    line-height: 25px;
    max-width: 719px;
}

/* Hero right: banner como flex item à direita */
.hero-banner {
    flex: 1;
    position: relative;
    background: url('../images/banner.png') center / cover no-repeat;
    min-height: 520px;
    border-radius: 0 0 0 60px;
    overflow: hidden;
}

/* Fade diagonal à esquerda do banner */
.hero-banner::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 120px;
    height: 100%;
    background: #fff;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
}

/* ============ CARDS SECTION ============ */
.cards-section {
    padding: 74px 0 60px;
    background: #fff;
    position: relative;
    z-index: 5;
}

.cards-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 0 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

/* Orange card */
.card-siga {
    background: var(--primary);
    border-radius: 15px;
    padding: 14% 8% 7% 8%;
    color: #fff;
    display: flex;
    flex-direction: column;
    box-shadow: var(--card-shadow-dark);
}

.card-siga h3 {
    font-size: 2.0625rem;
    font-weight: 500;
    letter-spacing: 7.04px;
    color: #000;
    margin-bottom: 42px;
    line-height: 33px;
}

.card-siga p {
    font-size: 1.125rem;
    line-height: 30px;
    font-weight: 500;
    flex: 1;
    margin-bottom: 0;
    color: #fff;
}

.siga-icons {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    margin-top: 50px;
    justify-content: center;
}

.siga-icons a {
    display: flex;
    width: 44px;
    height: 44px;
    background: #202020;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: opacity 0.2s;
    flex-shrink: 0;
}
.siga-icons a:hover { opacity: 0.75; }

/* White cards */
.card-info {
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
}

.card-icon-area {
    padding: 12% 12% 11% 13%;
}

.card-icon-area i {
    font-size: 2.4rem;
    background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-body {
    padding: 0 12% 11% 13%;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-info h4 {
    font-size: 1.875rem;
    font-weight: 500;
    line-height: 41px;
    color: var(--text-dark);
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 0;
}

.card-info p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 25px;
    font-weight: 300;
    flex: 1;
    margin-bottom: 30px;
}

/* ============ COMPETITION SECTION ============ */
.competition-section {
    background: var(--bg-light);
    padding: 200px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: -100px;
    z-index: 1;
}

.competition-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.competition-image-wrap {
    flex: 0 0 45%;
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
}

/* Decorative circle (faint background) */
.comp-decor-circle {
    position: absolute;
    top: 10px;
    left: 20px;
    width: 300px;
    height: 300px;
    background: url('../images/jogadora.png') center/contain no-repeat;
    z-index: 0;
    opacity: 0.06;
    border-radius: 50%;
}

/* Decorative dots pattern */
.comp-decor-dots {
    position: absolute;
    bottom: 20px;
    left: -48px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, var(--primary) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    z-index: 1;
    opacity: 0.85;
}

/* Decorative plus */
.comp-decor-plus {
    position: absolute;
    top: 45%;
    left: -10px;
    font-size: 2rem;
    color: #ccc;
    font-weight: 300;
    line-height: 1;
    z-index: 1;
}

.competition-image-wrap img {
    position: relative;
    z-index: 2;
    max-height: 440px;
    object-fit: contain;
    object-position: bottom;
}

.competition-text {
    flex: 1;
    padding-left: 5%;
}

.section-label {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 5px;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 25px;
}

.competition-text h3 {
    font-size: 3.125rem;
    font-weight: 500;
    line-height: 65px;
    letter-spacing: -1px;
    margin-bottom: 55px;
    max-width: 596px;
    background: linear-gradient(271deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.competition-text p {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 300;
    line-height: 25px;
    margin-bottom: 37px;
    max-width: 546px;
}

/* ============ CTA SECTION ============ */
.cta-section {
    padding: 40px 24px;
    background: var(--bg-light);
}

.cta-box {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(179deg, var(--secondary) 0%, var(--primary) 100%);
    border-radius: 20px;
    padding: 75px 40px 60px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 13px 35px 0px rgba(255,87,34,0.35);
}

.cta-box h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 32px;
    letter-spacing: 0.02em;
}

.cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 36px;
}

.cta-phone i { font-size: 2.2rem; color: #fff; }
.cta-phone a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

/* ============ FOOTER ============ */
.site-footer {
    background: var(--bg-light);
    padding-top: 80px;
}

/* Wave divider at top of footer */
.footer-wave {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-bottom: 0;
}
.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
}

.footer-logo { margin-bottom: 0; }
.footer-logo img {
    max-width: 100%;
    width: auto;
    height: auto;
    margin-bottom: 0;
}

.footer-menu h6,
.footer-contact h6 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.footer-divider {
    width: 40px;
    height: 3px;
    background: var(--primary);
    margin-bottom: 20px;
}

.footer-menu ul li {
    margin-bottom: 12px;
}
.footer-menu ul li a {
    color: var(--text-dark);
    font-size: 0.88rem;
    transition: color 0.2s;
}
.footer-menu ul li a:hover { color: var(--primary); }

.footer-contact p {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.footer-social a {
    display: flex;
    width: 42px;
    height: 42px;
    background: #000;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    transition: opacity 0.2s;
}
.footer-social a:hover { opacity: 0.7; }

.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 24px;
    text-align: center;
}
.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.footer-bottom img {
    height: 48px;
    width: auto;
}
.footer-dev {
    font-size: 0.8rem;
    color: #888;
}
.footer-copy {
    font-size: 0.8rem;
    color: #888;
}
.footer-copy a { color: var(--primary); }

/* ============ QUEM SOMOS — ABOUT SECTION ============ */
.about-section {
    padding: 120px 25px 100px;
    background: #fff;
}

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
    min-width: 0;
}

.about-label {
    display: block;
    font-size: 1.43rem;
    font-weight: 500;
    letter-spacing: 5px;
    color: #202020;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.about-bar {
    display: block;
    width: 38px;
    height: 3px;
    background: linear-gradient(271deg, var(--secondary) 0%, var(--primary) 100%);
    margin-bottom: 27px;
}

.about-heading {
    font-size: 3.86rem;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 65px;
    letter-spacing: -1px;
    margin-bottom: 47px;
    color: var(--text-dark);
}

.about-desc {
    font-size: 1.28rem;
    color: var(--text-gray);
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 560px;
}

.schedule-heading {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.schedule-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.schedule-icon {
    width: 62px;
    height: 62px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(312deg, var(--secondary) 4%, var(--primary) 84%);
    border-radius: 8px;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0px 4px 25px 0px rgba(255,87,34,0.45);
}

.schedule-info {
    padding-left: 5px;
}

.schedule-info h4 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #202020;
    line-height: 35px;
    margin-bottom: 0;
}

.schedule-info p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-gray);
    line-height: 25px;
}

.about-image {
    flex: 0 0 42%;
    max-width: 42%;
}

.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    box-shadow: 0px 8px 40px 0px rgba(0,0,0,0.15);
}

/* ============ ESTRUTURA SECTION ============ */
.estrutura-section {
    padding: 120px 25px 100px;
    background: #fff;
}

.estrutura-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.estrutura-text {
    flex: 0 0 48%;
    max-width: 48%;
    padding-top: 10px;
}

.estrutura-heading {
    font-size: 3.57rem;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 65px;
    letter-spacing: -1px;
    margin-bottom: 40px;
    color: var(--primary);
}

.estrutura-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.estrutura-list li {
    font-size: 1.14rem;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.7;
}

.estrutura-gallery {
    flex: 1;
    min-width: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    line-height: 0;
}

.gallery-item img {
    width: 100%;
    height: 175px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ============ CONTATO — INFO CARDS ============ */
.contact-cards-section {
    background: #fff;
    padding: 180px 25px 80px;
}

.contact-cards-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-card {
    background: #fff;
    border-radius: 35px;
    box-shadow: 0px 3px 35px 0px rgba(0,0,0,0.16);
    padding: 50px 25px 45px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.contact-card-icon {
    color: var(--primary);
    font-size: 2.6rem;
    line-height: 1;
}

.contact-card-label {
    font-size: 1rem;
    font-weight: 700;
    color: #202020;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.contact-card-text {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
}

/* ============ CONTATO — FORM SECTION ============ */
.contact-form-section {
    background: var(--bg-light);
    position: relative;
    padding: 80px 25px 100px;
}

/* Arco branco simulando a wave do original */
.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5%;
    width: 110%;
    height: 90px;
    background: #fff;
    border-radius: 0 0 50% 50% / 0 0 80px 80px;
    z-index: 0;
}

.contact-form-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
    position: relative;
    z-index: 1;
    padding-top: 40px;
}

.contact-form-text {
    flex: 0 0 45%;
    max-width: 45%;
}

.contact-heading {
    font-size: 3.2rem;
    font-weight: 500;
    color: var(--primary);
    text-transform: capitalize;
    line-height: 1.2;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.contact-subheading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #202020;
    line-height: 1.6;
    margin-bottom: 14px;
}

.contact-desc {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 38px;
}

.contact-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-social-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #202020;
    font-size: 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.contact-social-item:hover {
    background: var(--primary);
    color: #fff;
}

.contact-form-wrap {
    flex: 1;
    min-width: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-field {
    width: 100%;
    height: 55px;
    border-radius: 50px;
    border: none;
    background: #fff;
    padding: 0 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #202020;
    box-shadow: 0px 2px 15px rgba(0,0,0,0.07);
    outline: none;
    transition: box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.form-field:focus {
    box-shadow: 0px 2px 20px rgba(255,87,34,0.25);
}

.form-field::placeholder {
    color: #bbb;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
}

.form-textarea {
    height: 150px;
    border-radius: 24px;
    padding: 18px 24px;
    resize: vertical;
}

.form-submit-wrap {
    display: flex;
    justify-content: flex-end;
}

.btn-enviar {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 17px 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0px 6px 35px rgba(17,17,17,0.35);
    transition: background 0.2s, box-shadow 0.2s;
}

.btn-enviar:hover {
    background: var(--primary-dark);
    box-shadow: 0px 6px 35px rgba(17,17,17,0.55);
}

/* ===== Feedback do formulário de contato ===== */
.form-feedback {
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
}
.form-feedback p { margin: 2px 0; }
.form-feedback-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}
.form-feedback-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}
.form-field.is-invalid {
    border-color: #ef4444;
}


.privacy-hero {
    background: var(--bg-light);
    padding: 160px 25px 80px;
    text-align: center;
}
.privacy-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.privacy-hero-title {
    font-size: 3rem;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.2;
}
.privacy-hero-sub {
    font-size: 1.05rem;
    color: var(--text-gray);
    font-weight: 300;
}

.privacy-section {
    background: #fff;
    padding: 70px 25px 100px;
}
.privacy-inner {
    max-width: 860px;
    margin: 0 auto;
}

.privacy-h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 40px 0 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}
.privacy-inner .privacy-h3:first-child {
    margin-top: 0;
}

.privacy-p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 18px;
    font-weight: 300;
}
.privacy-p a {
    color: var(--primary);
    text-decoration: underline;
}
.privacy-p a:hover {
    color: var(--primary-dark);
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.privacy-list li {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    font-weight: 300;
    padding-left: 20px;
    position: relative;
}
.privacy-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.privacy-table-wrap {
    overflow-x: auto;
    margin: 0 0 28px;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.privacy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.privacy-table thead tr {
    background: var(--primary);
    color: #fff;
}
.privacy-table thead th {
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.privacy-table tbody tr:nth-child(even) {
    background: #f9f9f9;
}
.privacy-table tbody td {
    padding: 12px 18px;
    color: var(--text-gray);
    line-height: 1.6;
    vertical-align: top;
    border-bottom: 1px solid #eee;
}
.privacy-table tbody td:first-child {
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
    font-size: 0.87rem;
}

@media (max-width: 768px) {
    .privacy-hero { padding: 130px 20px 60px; }
    .privacy-hero-title { font-size: 2.2rem; }
    .privacy-section { padding: 50px 20px 70px; }
    .privacy-table tbody td:first-child { white-space: normal; }
}

/* ============ LIGHTBOX ============ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    outline: none;
}
.lightbox[hidden] { display: none; }

.lightbox-img-wrap {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-img-wrap img {
    max-width: 88vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    box-shadow: 0 8px 60px rgba(0,0,0,0.6);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10;
}
.lightbox-close { top: 20px; right: 24px; }
.lightbox-prev  { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 16px; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover { background: rgba(255,255,255,0.28); }
.lightbox-prev:hover,
.lightbox-next:hover  { background: rgba(255,87,34,0.75); }

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    background: rgba(0,0,0,0.45);
    padding: 5px 18px;
    border-radius: 20px;
    pointer-events: none;
}

/* ============ CONTACT MAP ============ */
.contact-map-wrap {
    max-width: 1200px;
    margin: 50px auto 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
    position: relative;
    z-index: 1;
}
.contact-map-wrap iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}

@media (max-width: 1366px) {
    .hero-label { font-size: 1.56rem; line-height: 17px; }
    .hero-heading { font-size: 3.4rem; line-height: 46px; }
    .hero-text { margin-top: 80px; }
}

@media (max-width: 1024px) {
    .about-inner { gap: 40px; }
    .about-heading { font-size: 2.8rem; line-height: 55px; margin-bottom: 30px; }
    .about-desc { font-size: 1.1rem; max-width: 100%; }
    .about-image { flex: 0 0 45%; max-width: 45%; }
    .about-image img { height: 420px; }
    .hero-label { font-size: 1.06rem; }
    .hero-heading { font-size: 1.75rem; line-height: 51px; margin-bottom: 25px; }
    .hero-desc { font-size: 0.875rem; }
    .hero-text { flex: 0 0 55%; max-width: 55%; margin-top: 50px; }
    .hero-banner { flex: 1; min-height: 480px; }
    .cards-inner { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr 1fr; }

    .card-siga h3 { font-size: 1.3rem; }
    .card-info h4 { font-size: 1.5rem; }

    .competition-section { margin-top: -60px; padding-top: 160px; }
    .competition-text h3 { font-size: 2.25rem; line-height: 55px; max-width: 407px; }

    .estrutura-inner { gap: 40px; }
    .estrutura-text { flex: 0 0 47%; max-width: 47%; }
    .estrutura-heading { font-size: 2.8rem; line-height: 55px; margin-bottom: 28px; }
    .gallery-item img { height: 145px; }

    .contact-cards-section { padding-top: 120px; padding-bottom: 60px; }
    .contact-cards-inner { gap: 15px; }
    .contact-heading { font-size: 2.6rem; }
    .contact-form-inner { gap: 40px; }
}

@media (max-width: 768px) {
    .about-section { padding: 60px 16px 60px; }
    .about-inner { flex-direction: column-reverse; gap: 32px; }
    .about-image { flex: none; max-width: 100%; width: 100%; }
    .about-image img { height: 280px; }
    .about-heading { font-size: 2.2rem; line-height: 50px; margin-bottom: 24px; }
    .about-desc { font-size: 1rem; }
    .header-nav { display: none; }
    .header-social { display: none; }
    .mobile-nav-toggle { display: block; }

    .hero-section { min-height: auto; }
    .hero-inner { flex-direction: column; padding: 40px 24px; }
    .hero-text { flex: none; max-width: 100%; padding-right: 0; margin-top: 0; }
    .hero-banner {
        position: relative;
        width: 100%;
        height: 260px;
        background-size: cover;
        background-position: center;
    }
    .hero-banner::after { display: none; }

    .cards-inner { grid-template-columns: 1fr 1fr; gap: 16px; padding: 0 16px; }

    .competition-section { margin-top: 0; padding-top: 60px; }
    .competition-inner { flex-direction: column; gap: 40px; }
    .competition-image-wrap { flex: none; width: 100%; min-height: 300px; }
    .competition-text { padding-left: 0; }

    .footer-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-heading { font-size: 1.9rem; line-height: 55px; }

    .estrutura-section { padding: 60px 16px 60px; }
    .estrutura-inner { flex-direction: column; gap: 32px; }
    .estrutura-text { flex: none; max-width: 100%; }
    .estrutura-heading { font-size: 2.2rem; line-height: 50px; margin-bottom: 24px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item img { height: 160px; }

    .contact-cards-section { padding: 80px 16px 60px; }
    .contact-cards-inner { grid-template-columns: repeat(2, 1fr); }
    .contact-form-section { padding: 60px 16px 80px; }
    .contact-form-section::before { height: 60px; border-radius: 0 0 50% 50% / 0 0 50px 50px; }
    .contact-form-inner { flex-direction: column; gap: 32px; padding-top: 30px; }
    .contact-form-text { flex: none; max-width: 100%; }
    .contact-heading { font-size: 2.2rem; line-height: 1.2; margin-bottom: 20px; }
    .contact-desc { margin-bottom: 28px; }
}

@media (max-width: 480px) {
    .cards-inner { grid-template-columns: 1fr; }
    .hero-heading { font-size: 1.8rem; }
    .competition-text h3 { font-size: 2.3rem; }
    .about-heading { font-size: 1.9rem; line-height: 44px; }
    .cta-box h2 { font-size: 1.6rem; }

    .contact-cards-inner { grid-template-columns: 1fr; }
    .estrutura-heading { font-size: 1.9rem; line-height: 44px; }
    .contact-heading { font-size: 1.9rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .form-submit-wrap { justify-content: center; }
    .btn-enviar { width: 100%; text-align: center; }
}

