        /* VARIÁVEIS */
        :root {
            --primary: #FF6B00;
            --primary-dark: #E55E00;
            --secondary: #2C3E50;
            --light: #F9F9F9;
            --dark: #333333;
            --gray: #777777;
            --light-gray: #EEEEEE;
        }

        /* RESET E ESTILOS GERAIS */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #f8f9fa;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.3;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

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

        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 700;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-family: 'Montserrat', sans-serif;
        }

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

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
            margin-left: 15px;
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.1);
        }

        .section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 20px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
        }

        .section-subtitle {
            text-align: center;
            color: var(--gray);
            margin-bottom: 50px;
            font-size: 1.1rem;
        }

        .bg-light {
            background: var(--light);
        }

        /* HEADER */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            padding: 15px 0;
        }

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

        #logo-name {
            display: flex;
        }

        #nome-descricao {
            display: flex;
            width: auto;
            flex-direction: column;
            font-weight: 600;
            color: var(--primary);
        }

        #logo-target {
            display: flex;
            width: 5rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--secondary);
        }

        .logo span {
            color: var(--primary);
        }

        .desktop-menu {
            display: flex;
        }

        .desktop-menu li {
            margin-left: 30px;
        }

        .desktop-menu li a {
            font-weight: 600;
            position: relative;
            padding-bottom: 5px;
        }

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

        .desktop-menu li a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--secondary);
            cursor: pointer;
        }

        .mobile-menu {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            display: none;
            padding: 20px 0;
            z-index: 999;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu ul li {
            padding: 15px 20px;
            text-align: center;
            border-bottom: 1px solid var(--light-gray);
        }

        .mobile-menu ul li a {
            font-weight: 600;
            display: block;
        }

        /* HERO SECTION */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="800" viewBox="0 0 1200 800"><rect width="1200" height="800" fill="%232C3E50"/><path d="M0,400 C150,450 350,350 600,400 C850,450 1050,350 1200,400 L1200,800 L0,800 Z" fill="%23FF6B00"/></svg>') center/cover no-repeat;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            color: white;
            padding-top: 80px;
        }

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

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            font-weight: 900;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .hero-btns {
            display: flex;
        }

        /* SOBRE */
        .sobre-content {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-top: 40px;
        }

        .sobre-text {
            flex: 1;
        }

        .sobre-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .sobre-text ul {
            margin: 30px 0;
        }

        .sobre-text ul li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }

        .sobre-text ul li i {
            color: var(--primary);
            margin-right: 10px;
            margin-top: 5px;
        }

        .sobre-img {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            background: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 400px;
        }

        .sobre-img .img-placeholder {
            font-size: 4rem;
            color: var(--primary);
        }

        /* SERVIÇOS - ABAS */
        .tabs {
            margin-top: 40px;
        }

        .tab-buttons {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tab-btn {
            padding: 12px 30px;
            background: white;
            border: 2px solid var(--light-gray);
            border-radius: 30px;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tab-btn.active, .tab-btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        .tab-content-inner {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .tab-text {
            flex: 1;
        }

        .tab-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .tab-text p {
            margin-bottom: 20px;
        }

        .tab-text ul {
            margin: 20px 0 30px;
        }

        .tab-text ul li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }

        .tab-text ul li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-size: 1.5rem;
        }

        .tab-img {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            background: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 300px;
        }

        .tab-img .img-placeholder {
            font-size: 3rem;
            color: var(--primary);
        }

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

        .modalidade-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .modalidade-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .modalidade-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 107, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .modalidade-icon i {
            font-size: 30px;
            color: var(--primary);
        }

        .modalidade-card h4 {
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        /* DIFERENCIAIS */
        .diferenciais-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .diferencial-card {
            text-align: center;
            padding: 40px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        .diferencial-card:hover {
            transform: translateY(-10px);
        }

        .diferencial-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 107, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .diferencial-icon i {
            font-size: 35px;
            color: var(--primary);
        }

        .diferencial-card h3 {
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        /* DEPOIMENTOS */
        .depoimentos-slider {
            max-width: 800px;
            margin: 50px auto 0;
            display: flex;
            gap: 30px;
        }

        .depoimento {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            position: relative;
        }

        .depoimento::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            font-family: Georgia, serif;
            color: rgba(255, 107, 0, 0.1);
            line-height: 1;
        }

        .depoimento-text {
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
            font-style: italic;
            font-size: 1.1rem;
        }

        .depoimento-autor {
            position: relative;
            z-index: 1;
        }

        .depoimento-autor h4 {
            color: var(--primary);
        }

        /* CONTATO */
        .contato-content {
            display: flex;
            gap: 50px;
            margin-top: 40px;
        }

        .contato-text {
            flex: 1;
        }

        .contato-text p {
            margin: 20px 0 30px;
            font-size: 1.1rem;
        }

        .contato-info {
            margin-top: 40px;
        }

        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .info-item i {
            width: 40px;
            height: 40px;
            background: rgba(255, 107, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--primary);
        }

        .contato-form {
            flex: 1;
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

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

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid var(--light-gray);
            border-radius: 5px;
            font-family: 'Open Sans', sans-serif;
            font-size: 1rem;
        }

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

        /* FOOTER */
        footer {
            background: var(--secondary);
            color: white;
            padding: 70px 0 0;
        }

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

        .footer-col h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }

        .footer-col p {
            margin-bottom: 20px;
            opacity: 0.8;
        }

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

        .footer-col ul li i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 20px 0;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        #logo-footer {
            width: 14rem;
        }

        /* WHATSAPP FLOAT */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            z-index: 100;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }

        .whatsapp-float:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }

        /* RESPONSIVIDADE */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .sobre-content,
            .tab-content-inner,
            .contato-content {
                flex-direction: column;
            }
            
            .tab-img,
            .sobre-img {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .hero-btns {
                flex-direction: column;
                gap: 15px;
            }
            
            .btn-secondary {
                margin-left: 0;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .desktop-menu {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .depoimentos-slider {
                flex-direction: column;
            }
            
            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .hero {
                min-height: 600px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .tab-buttons {
                flex-direction: column;
            }
            
            .tab-btn {
                width: 100%;
            }
        }