/* ==========================================
   ROTAFULL - CSS PRINCIPAL
   Cores: Preto (#000, #1a1a1a) e Laranja (#ff6600, #ff8533)
   ========================================== */

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

:root {
    --primary-orange: #ff6600;
    --secondary-orange: #ff8533;
    --dark-black: #000;
    --light-black: #1a1a1a;
    --gray: #333;
    --light-gray: #f5f5f5;
    --white: #fff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--gray);
    overflow-x: hidden;
}

/* ==========================================
   HEADER
   ========================================== */

.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

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

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn-header {
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-track {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-track:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-system:hover {
    background: var(--secondary-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gray);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Sidebar Mobile */
.sidebar {
    position: fixed;
    left: -100%;
    top: 0;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: 2px 0 15px rgba(0,0,0,0.2);
    transition: left 0.4s ease;
    z-index: 1001;
    padding: 30px 0;
}

.sidebar.active {
    left: 0;
}

.sidebar .logo {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.sidebar .logo img {
    height: 40px;
}

.sidebar-menu {
    list-style: none;
    padding: 0 20px;
}

.sidebar-menu li {
    margin-bottom: 15px;
}

.sidebar-menu li a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateX(5px);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Botões fixos mobile */
.mobile-fixed-buttons {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 12px;
    gap: 10px;
    z-index: 998;
}

.mobile-fixed-buttons a {
    flex: 1;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.mobile-fixed-buttons .btn-track {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.mobile-fixed-buttons .btn-system {
    background: var(--primary-orange);
    color: var(--white);
}

/* ==========================================
   BANNER
   ========================================== */

.banner {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 578;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
}

.banner-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

.banner-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    animation: fadeInUp 1.2s ease;
}

.banner-content .btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    animation: fadeInUp 1.4s ease;
}

.banner-content .btn-primary:hover {
    background: var(--secondary-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,102,0,0.4);
}

/* Banner Interno */
.banner-interno {
    height: 400px;
    margin-top: 80px;
}

.banner-interno h1 {
    font-size: 48px;
}

/* ==========================================
   SEÇÕES
   ========================================== */

.section {
    padding: 80px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-title h2 {
    font-size: 42px;
    color: var(--dark-black);
    margin-bottom: 15px;
    font-weight: 800;
}

.section-title p {
    font-size: 18px;
    color: var(--gray);
}

.section-title .line {
    width: 80px;
    height: 4px;
    background: var(--primary-orange);
    margin: 20px auto;
    border-radius: 2px;
}

/* ==========================================
   GRID DE SERVIÇOS/SOLUÇÕES
   ========================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(255,102,0,0.2);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 25px;
}

.service-card-content h3 {
    font-size: 22px;
    color: var(--dark-black);
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card-content p {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-card-content .btn-more {
    display: inline-block;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-card-content .btn-more:hover {
    color: var(--secondary-orange);
    transform: translateX(5px);
}

/* ==========================================
   PÁGINA DE SERVIÇO
   ========================================== */

.service-detail {
    padding: 60px 20px;
    margin-top: 80px;
}

.service-detail .solution-page {
    padding-top: 30px;
}

.service-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: start;
}

.service-intro-text h2 {
    font-size: 36px;
    color: var(--dark-black);
    margin-bottom: 25px;
    font-weight: 800;
}

.service-intro-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.advantages-box {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    padding: 35px;
    border-radius: 15px;
    color: var(--white);
}

.advantages-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.advantages-box ul {
    list-style: none;
}

.advantages-box ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.advantages-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 20px;
}

.benefits-section {
    margin-bottom: 60px;
}

.benefits-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-black);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(255,102,0,0.15);
}

.benefit-item h3 {
    font-size: 20px;
    color: var(--primary-orange);
    margin-bottom: 12px;
    font-weight: 700;
}

.benefit-item p {
    font-size: 15px;
    line-height: 1.7;
}

.cta-section {
    text-align: center;
    margin: 60px 0;
}

.btn-cta {
    display: inline-block;
    padding: 18px 50px;
    background: var(--primary-orange);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255,102,0,0.3);
}

.btn-cta:hover {
    background: var(--secondary-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,102,0,0.4);
}

.other-services {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
}

.other-services h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--dark-black);
    text-align: center;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.services-list a {
    padding: 12px 25px;
    background: var(--white);
    color: var(--gray);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.services-list a:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-2px);
}

.other-services-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid #eee;
}

.other-services-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-black);
    font-weight: 800;
}

.other-services-section .services-grid {
    grid-template-columns: repeat(4, 1fr);
}

/* ==========================================
   PÁGINA DE SOLUÇÃO
   ========================================== */

.solution-page {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 60px 20px;
    margin-top: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.solution-content h2 {
    font-size: 32px;
    color: var(--dark-black);
    margin-bottom: 25px;
    font-weight: 800;
}

.solution-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.solution-content img {
    width: 100%;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.stat-item {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    color: var(--white);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 32px;
    margin-bottom: 8px;
    font-weight: 800;
}

.stat-item p {
    font-size: 14px;
    line-height: 1.4;
}

.solution-sidebar {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.solution-sidebar h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--dark-black);
}

.solution-sidebar ul {
    list-style: none;
}

.solution-sidebar ul li {
    margin-bottom: 12px;
}

.solution-sidebar ul li a {
    display: block;
    padding: 12px 15px;
    background: var(--white);
    color: var(--gray);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.solution-sidebar ul li a:hover,
.solution-sidebar ul li a.active {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateX(5px);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--light-black);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-orange);
}

.footer-section p,
.footer-section ul li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
}

/* ==========================================
   FORMULÁRIO
   ========================================== */

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gray);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    padding: 15px 40px;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-orange);
    transform: translateY(-2px);
}

/* ==========================================
   ANIMAÇÕES
   ========================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

/* AOS Animations - DESABILITADO */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* ==========================================
   CALL TO ACTION ESPECIAL
   ========================================== */

.cta-final {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.cta-final h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}

.cta-final p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-cta-special {
    display: inline-block;
    padding: 18px 45px;
    background: #fff;
    color: var(--primary-orange);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border: 3px solid #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta-special:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

/* ==========================================
   RESPONSIVO
   ========================================== */

@media (max-width: 1024px) {
    .nav-menu {
        gap: 25px;
    }
    
    .banner {
        aspect-ratio: 1920 / 578;
    }
    
    .banner-content h1 {
        font-size: 42px;
        line-height: 1.3;
    }
    
    .banner-content p {
        font-size: 18px;
    }
    
    .banner-content .btn-primary {
        padding: 14px 35px;
        font-size: 15px;
    }
    
    .service-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .solution-page {
        grid-template-columns: 1fr;
    }
    
    .solution-sidebar {
        position: static;
    }
    
    .other-services-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .header-buttons {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .mobile-fixed-buttons {
        display: flex;
    }
    
    .banner {
        aspect-ratio: 1920 / 578;
    }
    
    .banner-content {
        padding: 0 30px;
    }
    
    .banner-content h1 {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .banner-content p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    .banner-content .btn-primary {
        padding: 12px 30px;
        font-size: 15px;
    }
    
    .section {
        padding: 60px 20px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .other-services-section .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .banner-interno {
        margin-top: 60px;
        height: 300px;
    }
    
    .banner-interno h1 {
        font-size: 32px;
    }
    
    body {
        padding-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 12px 20px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .banner {
        aspect-ratio: 1920 / 578;
    }
    
    .banner-content {
        padding: 0 20px;
    }
    
    .banner-content h1 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .banner-content p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .banner-content .btn-primary {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .banner-interno {
        height: 250px;
    }
    
    .banner-interno h1 {
        font-size: 24px;
    }
}


