/* ═══════════════════════════════════════════════════════
   SUMMIT FAROL & FORJA — Home Page
   Layout original com paleta dourada/amarela
   ═══════════════════════════════════════════════════════ */

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

:root {
    --black: #080b0e;
    --black-light: #0d1117;
    --gray-900: #1A1A1A;
    --gray-800: #222222;
    --gray-700: #333333;
    --gray-500: #666666;
    --gray-400: #888888;
    --gray-300: #AAAAAA;
    --gray-200: #CCCCCC;
    --gray-100: #E8E8E8;
    --white: #FFFFFF;
    --off-white: #F5F5F5;

    --gold: #dc8c02;
    --gold-light: #dc8c02;
    --gold-dark: #dc8c02;
    --yellow: #dc8c02;
    --yellow-dark: #dc8c02;

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background: #080b0e;
    color: var(--white);
    height: 100vh;
    overflow: auto;
    position: relative;
}

/* ─── LAYOUT ─── */
.page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* ─── RIGHT: IMAGE SIDE ─── */
.image-side {
    position: relative;
    overflow: hidden;
}

.image-side__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.image-side__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to left,
        transparent 0%,
        transparent 50%,
        #080b0e 100%
    );
    pointer-events: none;
}

.image-side__overlay-bottom {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        var(--black) 0%,
        rgba(10,10,10,0.4) 30%,
        transparent 60%
    );
    pointer-events: none;
}

.image-side__name {
    position: absolute;
    bottom: 48px;
    left: 48px;
    z-index: 2;
}

.image-side__name span {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-dark);
}

.image-side__name strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-top: 4px;
}

/* ─── LEFT: CONTENT SIDE ─── */
.content-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px clamp(32px, 5vw, 80px);
    position: relative;
    overflow-y: auto;
    padding-top: 0;
    padding-bottom: 0;
    overflow-y: hidden;
}

.content-side__inner {
    width: 100%;
    max-width: 638px;
    display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ─── BRANDING ─── */
.brand {
    margin-bottom: 0px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.2s forwards;
}

.brand__logo {
    max-width: 240px;
    width: 100%;
    height: auto;
    display: block;
}

/* ─── PRE-SALE BADGE ─── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-900);
    border: 1px solid var(--gold-dark);
    border-radius: 100px;
    padding: 8px 18px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.4s forwards;
}


.badge__dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.badge__text {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-light);
}

/* ─── CAZARRÉ QUOTE ─── */
.cazarre-quote {
    margin-bottom: 0;
    padding-left: 16px;
    border-left: 2px solid var(--gold-dark);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.5s forwards;
}

.cazarre-quote p {
    font-family: var(--font-serif);
   font-size: 2.3rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--gold-light);
}

.cazarre-quote cite {
    display: block;
    margin-top: 6px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--gray-400);
}

/* ─── FORM ─── */
.form {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-out-expo) 0.6s forwards;
    margin-bottom: 1rem;
}

.form__group {
    margin-bottom: 16px;
}

.form__label {
  display: none;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.form__input {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--white);
    background: var(--gray-900);
    border: 1px solid var(--gray-700);
    border-radius: 10px;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.form__input::placeholder {
    color: var(--gray-500);
}

.form__input:focus {
    border-color: var(--gold);
    background: var(--black-light);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}

/* ─── BOTÃO COM DEGRADÊ AMARELO ─── */
.form__submit {
    width: 100%;
    padding: 16px;
    margin-top: 0px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--black);
    background: linear-gradient(to bottom, var(--yellow), var(--yellow-dark));
    border: 2px solid var(--gold);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
/* .form__border{
    border: 2px solid var(--gold);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
} */

/* 
.form__submit:hover {
    background: linear-gradient(to bottom, #FFCC33, var(--yellow));
    border-color: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(251, 185, 0, 0.2);
} */

.form__submit:active {
    transform: translateY(0);
}

.form__submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form__disclaimer {
    margin-top: 16px;
    font-size: 0.72rem;
    font-weight: 300;
    color: var(--gray-500);
    line-height: 1.5;
    text-align: center;
}

/* ─── SUCCESS STATE ─── */
.form__success {
    display: none;
    text-align: center;
    padding: 40px 0;
}

.form__success.visible {
    display: block;
    animation: fadeUp 0.6s var(--ease-out-expo);
}

.form__success-icon {
    width: 56px;
    height: 56px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.form__success-icon svg {
    stroke: var(--gold);
}

.form__success-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 8px;
}

.form__success-text {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ─── COPYRIGHT CENTRALIZADO ─── */
.copyright {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.copyright p {
    font-size: 0.6rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--gray-500);
}

/* ─── LOGO ÍTALO À DIREITA ─── */
.mini-footer {
    position: fixed;
    bottom: 24px;
    right: 40px;
    text-align: right;
    white-space: nowrap;
    z-index: 10;
    display: flex;
    gap: 1.6rem;
    align-items: start;
}

.mini-footer__realizacao {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-direction: column;
}

.mini-footer__logo {
    width: 48px;
    height: auto;
    order: 2;
}

.mini-footer__realizacao-text {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark);
}

/* ─── NOISE TEXTURE ─── */
.page::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 200px;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .degrade{display:none;}
    .content-side{
   position: relative;
    top: 0;
    z-index: 999;
    margin-top: -158px;
    }
    
    .content-side__inner{
        gap: 28px;
    }
    
    .image-side {
      position: relative;
      overflow: hidden;
      position: relative;
      top: -50px;
    }
    .mini-footer{
        right:0;
    }
    .copyright {
     position:absolute;   
    }
    
}

@media (max-width: 575px) {
    .cazarre-quote p {
  font-size: 2rem;
    }
}

@media (max-width: 900px) {
    body {
        height: auto;
        overflow: auto;
    }

    .page {
        grid-template-columns: 1fr;
        grid-template-rows: 50vh auto;
        height: auto;
    }

    .image-side {
        order: -1;
    }

    .image-side__overlay {
        background: linear-gradient(
            to top,
            #080b0e 0%,
            rgba(8, 11, 14, 0.4) 40%,
            transparent 70%
        );
    }

    .content-side {
        padding: 40px 24px 100px;
    }

    .mini-footer {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 48px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page {
        grid-template-rows: 45vh auto;
    }

    .brand__logo {
        max-width: 200px;
    }
}


.degrade{
width: 50%;
  height: 50%;
  position: absolute;
  top: -136px;
  left: -76px;
  background: #CD8403;
  filter: blur(9rem);
  border-radius: 100%;
  opacity: .4;
}


/* Estilos v2 **/
blockquote .white{
    color: white;
    margin-bottom: .8rem;
}

.extraClasse p {
    margin-bottom: 0.8rem;
}

.extraClasse li {
    margin-bottom: 0.4rem;
    list-style-type: disc;
    list-style-position: inside;
}

.extraClasse li::marker {
  color: var(--gold-light);/* Cor desejada para o marcador */
  font-weight: bold; /* Opcional: deixa o marcador em negrito */
}

.mini-footer__apoio {
    display: flex;
    flex-direction: column;
}
.mini-footer__apoio span {order:1}
.mini-footer__apoio .list {
  order: 2;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}

.mini-footer .mini-footer__apoio .mini-footer__realizacao-text{
    text-align: center;
}


.mini-footer__realizacao .mini-footer__logo{
  width: 45px;
}

#logo_liceo{
    width: 60px;
}












