:root {
    /* Brand Colors based on user specs */
    --color-blue: #1c3f85;         
    --color-blue-light: #2c5ba8;
    --color-blue-dark: #122b5e;
    
    --color-orange: #ea5d10;
    --color-orange-hover: #cc4f0b;

    --color-bg-light: #f7f9fc;
    --color-text-main: #334155;
    --color-text-muted: #64748b;
    --color-white: #ffffff;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout */
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-blue-dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.btn.large {
    padding: 16px 36px;
    font-size: 1.125rem;
    border-radius: 8px;
}

.btn-primary {
    background-color: var(--color-orange);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(234, 93, 16, 0.2);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-blue);
    border: 2px solid var(--color-blue);
}

.btn-secondary:hover {
    background-color: var(--color-blue-light);
    color: var(--color-white);
    border-color: var(--color-blue-light);
}

.btn-outline {
    border: 2px solid var(--color-blue);
    color: var(--color-blue);
    background: transparent;
}

.btn-outline:hover {
    background: var(--color-blue);
    color: var(--color-white);
}

.shadow-btn {
    box-shadow: 0 8px 16px rgba(234, 93, 16, 0.3);
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-white);
    padding: 10px 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .nav-logo {
        height: 38px;
    }
}

.footer-logo {
    max-height: 65px;
    width: auto;
    margin-bottom: 20px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-main);
    position: relative;
}

.nav-links a:hover {
    color: var(--color-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--color-orange);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* MENU TOGGLE */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--color-blue);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: 0.4s ease-in-out;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .nav-actions .btn-outline {
        display: none;
    }

    .navbar.mobile-active .menu-toggle span:nth-child(1) { transform: rotate(45deg); }
    .navbar.mobile-active .menu-toggle span:nth-child(2) { opacity: 0; }
    .navbar.mobile-active .menu-toggle span:nth-child(3) { transform: rotate(-45deg); }
}

@media (max-width: 576px) {
    .nav-actions .btn-primary {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 63, 133, 0.85) 0%, rgba(18, 43, 94, 0.95) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: var(--color-orange);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 4px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(234, 93, 16, 0.3);
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 900;
    color: var(--color-white);
}

.hero-content h1 span {
    color: var(--color-orange);
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
    .hero-container {
        justify-content: center;
        text-align: center;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* SECTIONS STRUCTURE */
.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header.center p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

/* SEÇÃO BLOG HOME */
.sect-blog {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.blogSwiper {
    width: 100%;
    padding-bottom: 40px;
}

.swiper-pagination-bullet {
    background: var(--color-blue) !important;
    opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
    background: var(--color-orange) !important;
    opacity: 1 !important;
}

/* ESPECIALIDADES */
.sect-especialidades {
    padding: 100px 0;
    background-color: var(--color-white);
}

.especialidades-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .especialidades-grid {
        grid-template-columns: 1fr;
    }
}

.esp-card {
    position: relative;
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid #e2e8f0;
    padding: 50px;
    border-radius: 16px;
    transition: var(--transition);
    z-index: 1;
}

.esp-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center right;
    opacity: 0;
    filter: blur(4px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    z-index: -1;
    transform: scale(1.1);
}

.esp-card-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #ffffff 15%, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0.3) 100%);
}

.esp-card:hover .esp-card-bg {
    opacity: 1;
    transform: scale(1);
}

/* Garante que o conteúdo fique legível e acima do fundo */
.esp-card > *:not(.esp-card-bg) {
    position: relative;
    z-index: 2;
}

.esp-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: var(--color-blue-light);
}

.esp-custom-icon {
    height: 70px;
    width: auto;
    margin-bottom: 25px;
    display: block;
}

.esp-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.esp-card p {
    font-size: 1.1rem;
    color: var(--color-text-main);
    margin-bottom: 30px;
}

.esp-list {
    list-style: none;
}

.esp-list li {
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
    color: var(--color-blue-dark);
}

.esp-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-orange);
    font-weight: 900;
}

/* ABOUT */
.sect-about {
    padding: 100px 0;
    background-color: var(--color-blue-dark);
    color: var(--color-white);
}

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

.sect-about h2 {
    color: var(--color-white);
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.sect-about h2 span {
    color: var(--color-orange);
}

.sect-about p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.about-image {
    position: relative;
    display: flex;
    flex-direction: column;
}

.about-photo-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.about-photo-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s ease-in-out;
    display: block;
    transform: scale(1.1);
}

.about-photo-img.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.about-tag {
    position: relative;
    margin-top: 20px;
    margin-left: auto;
    margin-right: -20px;
    z-index: 10;
    max-width: 280px;
    background: var(--color-orange);
    padding: 25px 30px;
    border-radius: 16px;
    color: var(--color-white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.about-tag .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}

.about-tag .label {
    font-weight: 600;
    font-size: 1.1rem;
}

.features-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

.check-icon {
    width: 30px;
    height: 30px;
    background: var(--color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* SOLUCOES */
.sect-solucoes {
    padding: 100px 0;
}

.solucoes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.solucao-item {
    position: relative;
    overflow: hidden;
    background: var(--color-white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: var(--transition);
    z-index: 1;
}

.solucao-item-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center right;
    opacity: 0;
    filter: blur(4px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    z-index: -1;
    transform: scale(1.1);
}

.solucao-item-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #ffffff 15%, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0.3) 100%);
}

.solucao-item:hover .solucao-item-bg {
    opacity: 1;
    transform: scale(1);
}

.solucao-item > *:not(.solucao-item-bg) {
    position: relative;
    z-index: 2;
}

.solucao-item:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: var(--color-blue-light);
}

.solucao-item h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.app-banner {
    color: var(--color-white);
    padding: 70px 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.app-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.app-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 63, 133, 0.92) 0%, rgba(18, 43, 94, 0.98) 100%);
    z-index: 1;
}

.app-info {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.btn-store {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    background-color: var(--color-bg-light);
    color: var(--color-blue-dark);
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-store:hover {
    background-color: var(--color-orange);
    color: var(--color-white);
    border-color: var(--color-orange);
}

.app-banner h3 {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 20px;
}

.app-banner p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 800px;
}

/* CTA */
.sect-cta {
    background-color: var(--color-orange);
    color: var(--color-white);
    padding: 80px 0;
    text-align: center;
}

.sect-cta h2 {
    color: var(--color-white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.sect-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 500;
}

.sect-cta .btn-primary {
    background: var(--color-blue-dark);
    color: white;
}
.sect-cta .btn-primary:hover {
    background: var(--color-blue-light);
}

/* FOOTER */
.footer {
    background: var(--color-blue-dark);
    color: #94a3b8;
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer h4 {
    color: var(--color-white);
    margin-bottom: 24px;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-links a:hover {
    background: var(--color-orange);
}

.social-links a svg {
    width: 20px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 15px;
}

.footer ul li a:hover {
    color: var(--color-orange);
}

.crc {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    font-size: 0.9rem;
}

.footer-bottom {
    background: #0b1a3b;
    padding: 24px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* FLOATING WHATSAPP */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.float-whatsapp svg {
    width: 35px;
}

.float-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.5);
}

/* UTILS INTERACTIVITY */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 2.8rem; }
    
    .especialidades-grid, .about-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }

    .solucoes-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .footer-col.brand-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .social-links {
        justify-content: center;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons .btn {
        width: 100%;
    }
    .sect-about, .sect-especialidades, .sect-blog, .sect-solucoes {
        padding: 60px 0;
    }
    .about-tag {
        margin-right: 0;
        align-self: center;
        width: 100%;
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-content h1 { font-size: 1.8rem; }
    .hero { min-height: 600px; }
}


