@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* ====================================
   CSS VARIABLES & RESET
   ==================================== */
:root {
    --orange: #ec671c;
    --orange-hover: #d45a16;
    --blue: #1a2644;
    --blue-light: #243360;
    --white: #ffffff;
    --gray-bg: #f5f6fa;
    --gray-text: #666;
    --border: rgba(0,0,0,0.08);
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 16px;
    --radius-lg: 24px;
}

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

html { scroll-behavior: smooth; width: 100%; overflow-x: clip; }

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--white);
    color: var(--blue);
    width: 100%;
    overflow-x: clip;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ====================================
   UTILITY CLASSES
   ==================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 100px 0;
}

.orange { color: var(--orange); }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--blue);
    line-height: 1.15;
}

.section-sub {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-top: 15px;
    font-weight: 500;
}

.tag {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tag-white {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.white-title {
    color: var(--white) !important;
}

/* BUTTONS */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: var(--white);
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(236, 103, 28, 0.35);
}
.btn-primary:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(236, 103, 28, 0.45);
}
.btn-primary.sm { font-size: 0.9rem; padding: 10px 22px; }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--blue);
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.btn-secondary:hover {
    transform: translateY(-2px);
    background: var(--blue);
    color: var(--white);
}
.btn-secondary.sm { font-size: 0.9rem; padding: 10px 22px; }

.btn-ig {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(220, 39, 67, 0.35);
}
.btn-ig:hover { transform: translateY(-2px); opacity: 0.9; }

/* ====================================
   REVEAL ANIMATIONS
   ==================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ====================================
   FLOATING WHATSAPP
   ==================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse-wa 2.5s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.12);
}

@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
    50% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
}

/* ====================================
   NAVBAR
   ==================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 50px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.07);
    z-index: 1000;
    transition: padding 0.3s;
}

.navbar.scrolled {
    padding: 10px 50px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.nav-logo {
    font-size: 1.4rem;
    font-weight: 900;
    display: flex;
    gap: 5px;
    letter-spacing: 1px;
}
.logo-tecio { color: var(--orange); }
.logo-teles { color: var(--blue); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--blue);
    padding: 8px 14px;
    border-radius: 50px;
    transition: all 0.2s;
}
.nav-links a:hover { background: var(--gray-bg); color: var(--orange); }

.btn-nav-whatsapp {
    background: var(--orange) !important;
    color: var(--white) !important;
    padding: 10px 20px !important;
    box-shadow: 0 4px 15px rgba(236,103,28,0.3);
    margin-left: 6px;
}
.btn-nav-whatsapp:hover {
    background: var(--orange-hover) !important;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--blue);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero-section {
    position: relative;
    width: 100%;
    margin-top: 70px;
    overflow: hidden;
}

.hero-full-img {
    width: 100%;
    min-height: 250px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 60px;
    left: 60px;
    z-index: 5;
}

.hero-ctas {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    font-weight: 600;
    animation: bounce 2s infinite;
    z-index: 5;
}

.hero-scroll-hint i { font-size: 1.2rem; }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ====================================
   QUEM SOU SECTION
   ==================================== */
.quem-sou-section { background: var(--white); }

.quem-sou-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quem-sou-text p {
    font-size: 1.05rem;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.quem-sou-text p strong { color: var(--blue); }

.valores-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.valor-item {
    flex: 1 1 200px;
    min-width: 0;
    background: var(--gray-bg);
    border-radius: var(--radius);
    padding: 20px 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.valor-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.valor-item i {
    font-size: 1.8rem;
    color: var(--orange);
    margin-bottom: 10px;
    display: block;
}

.valor-item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 4px;
}

.valor-item span {
    font-size: 0.8rem;
    color: var(--gray-text);
    font-weight: 500;
}

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

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.social-btn.ig {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #bc1888);
    color: var(--white);
}

.social-btn.wa {
    background: #25D366;
    color: var(--white);
}

.social-btn:hover { transform: translateY(-2px); opacity: 0.9; }

.quem-sou-photo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-photo {
    width: auto;
    max-width: 100%;
    max-height: 460px;
    display: block;
}

/* ====================================
   SLIDE PAGE TRANSITION - TRAJETÓRIA
   ==================================== */
.slide-trajectory-container {
    position: relative;
}

.sticky-page {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -20px 50px rgba(0,0,0,0.15);
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    padding-top: 80px; /* Offset for navbar */
    overflow: hidden;
    will-change: transform;
}

.page-1 { z-index: 10; background: var(--gray-bg); border-radius: 0; box-shadow: none; }
.page-2 { z-index: 20; background: var(--blue); }
.page-3 { z-index: 30; background: var(--orange); }
.page-4 { z-index: 40; background: var(--blue-light); }
.page-5 { z-index: 50; background: var(--white); }

.sp-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    width: 100%;
    padding: 0 40px;
}

.sp-content.reverse {
    flex-direction: row-reverse;
}

.sp-text {
    flex: 1;
    min-width: 0;
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.page-2 .sp-text,
.page-3 .sp-text,
.page-4 .sp-text {
    color: var(--blue);
}

.sp-year {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 900;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.sp-text h3 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 15px;
    line-height: 1.2;
}

.sp-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray-text);
}

/* Seta do balão */
.sp-text::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    border-width: 20px 0 20px 25px;
    border-style: solid;
    border-color: transparent transparent transparent var(--white);
}

.sp-content.reverse .sp-text::before {
    right: auto;
    left: -20px;
    border-width: 20px 25px 20px 0;
    border-color: transparent var(--white) transparent transparent;
}

.sp-image {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sp-image img {
    max-width: 100%;
    max-height: 55vh;
    object-fit: contain;
    border-radius: 20px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2));
}

@media (max-width: 900px) {
    .sp-content, .sp-content.reverse {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
        text-align: center;
    }
    .sp-text {
        padding: 25px;
    }
    .sp-text h3 {
        font-size: 1.6rem;
    }
    .sp-image img {
        max-height: 25vh;
    }
    .sticky-page {
        padding-top: 60px;
    }
    .sp-text::before, .sp-content.reverse .sp-text::before {
        top: -20px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        border-width: 0 20px 25px 20px;
        border-color: transparent transparent var(--white) transparent;
    }
}

/* ====================================
   BANDEIRAS
   ==================================== */
.bandeiras-section { background: var(--white); }

.bandeiras-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.bandeira-card {
    background: var(--gray-bg);
    border-radius: var(--radius-lg);
    padding: 40px;
    border-top: 5px solid var(--orange);
    transition: transform 0.3s, box-shadow 0.3s;
}

.bandeira-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.bc-icon {
    width: 54px;
    height: 54px;
    background: var(--orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    color: var(--white);
}

.bandeira-card h3 {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 15px;
    line-height: 1.3;
}

.bandeira-card p {
    font-size: 0.95rem;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 12px;
}

.tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.topic-tag {
    display: inline-block;
    border: 2px solid var(--orange);
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    transition: all 0.2s;
}

.topic-tag:hover {
    background: var(--orange);
    color: var(--white);
}

.instagram-section { background: var(--gray-bg); }

.ig-embeds-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 20px;
    margin-bottom: 40px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.ig-embeds-row::-webkit-scrollbar {
    height: 6px;
}
.ig-embeds-row::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.06);
    border-radius: 10px;
}
.ig-embeds-row::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 10px;
}

.ig-embeds-row .instagram-media {
    flex: 0 0 320px;
    scroll-snap-align: start;
    margin: 0 !important;
    min-width: 280px;
    border-radius: var(--radius) !important;
}

.ig-follow-btn {
    text-align: center;
}

/* ====================================
   APOIE SECTION
   ==================================== */
.apoie-section {
    background: var(--blue);
    position: relative;
}

.apoie-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 30px;
}

.apoie-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    color: var(--white);
    transition: transform 0.3s, box-shadow 0.3s;
}

.apoie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: rgba(255,255,255,0.12);
}

.ac-icon {
    width: 54px;
    height: 54px;
    background: var(--orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 20px;
}

.apoie-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.apoie-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.qr-wrapper {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-img {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    object-fit: contain;
}


/* Form */
.material-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.material-form input[type="text"],
.material-form input[type="tel"] {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border 0.2s;
}

.material-form input::placeholder { color: rgba(255,255,255,0.5); }
.material-form input:focus { border-color: var(--orange); }

.checkbox-group p {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
    opacity: 0.9;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 5px 0;
    opacity: 0.85;
    transition: opacity 0.2s;
}

.checkbox-group label:hover { opacity: 1; }

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--orange);
}

.material-form button { margin-top: 5px; justify-content: center; }

/* ====================================
   CONTATO SECTION
   ==================================== */
.contato-section { background: var(--white); }

.assessoria-card {
    background: var(--orange);
    border-radius: var(--radius-lg);
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(236, 103, 28, 0.3);
    gap: 40px;
}

.ac-text h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--blue);
}

.ac-text p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.ac-contatos {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-weight: 700;
    font-size: 1.05rem;
}

.ac-contatos i {
    margin-right: 10px;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: var(--white);
    font-weight: 800;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 50px;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 38, 68, 0.4);
    background: var(--blue-light);
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
    background: var(--blue);
    padding: 50px 40px 30px;
    text-align: center;
    color: var(--white);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.footer-logo .logo-tecio { color: var(--orange); }
.footer-logo .logo-teles { color: var(--white); }

.footer-line {
    display: flex;
    height: 4px;
    width: 100%;
    max-width: 200px;
    margin: 8px auto;
}
.fl-blue { flex: 7; background: #3b6fff; }
.fl-green { flex: 2; background: #009c3b; }
.fl-yellow { flex: 1; background: #ffdf00; }

.footer-sub {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.7;
    text-align: center;
    margin-top: 6px;
}

.footer-tag {
    font-weight: 700;
    color: var(--orange);
    margin: 15px 0;
    font-size: 1rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-3px);
}

.footer-copy {
    font-size: 0.82rem;
    opacity: 0.5;
    font-weight: 500;
}

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 1024px) {
    .apoie-grid { grid-template-columns: 1fr; max-width: 600px; }
    .reels-grid { grid-template-columns: repeat(2, 1fr); }
    .bandeiras-grid { grid-template-columns: 1fr; }
    .quem-sou-grid { grid-template-columns: 1fr; }
    .about-photo { max-height: 350px; }
    .assessoria-card { flex-direction: column; text-align: center; padding: 40px 30px; }
}

@media (max-width: 900px) {
    .section { padding: 70px 0; }
    .container { padding: 0 20px; }
    .navbar { padding: 14px 20px; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 20px; box-shadow: var(--shadow); border-top: 1px solid var(--border); gap: 5px; }
    .nav-links.open { display: flex; }
    .menu-toggle { display: flex; }
    .hero-overlay { bottom: 20px; left: 20px; right: 20px; }
    .hero-ctas { flex-direction: column; }
    .valores-grid { flex-direction: column; }
    .timeline::before { left: 20px; }
    .timeline-item { padding-right: 0; padding-left: 60px; justify-content: flex-start; }
    .timeline-item[data-side="right"] { padding-left: 60px; }
    .timeline-dot { left: 20px; }
    .timeline-card { max-width: 100%; }
    .growth-cards { flex-direction: column; align-items: center; }
    .growth-arrow { flex-direction: row; transform: rotate(90deg); }
    .apoie-grid { grid-template-columns: 1fr; max-width: 100%; }
    .reels-grid { grid-template-columns: repeat(2, 1fr); }
    .floating-whatsapp { width: 52px; height: 52px; font-size: 28px; bottom: 20px; right: 20px; }
}
