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

:root {
    --primary: #FF6B35;
    --primary-dark: #E85A2A;
    --secondary: #F7931E;
    --accent: #FBB03B;
    --dark: #1A1A2E;
    --light-bg: #F8F9FA;
    --light-secondary: #FFFFFF;
    --light-tertiary: #E9ECEF;
    --cyan: #00D9FF;
    --purple: #9D4EDD;
    --text: #1A1A2E;
    --text-secondary: #6C757D;
    --success: #06D6A0;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 107, 53, 0.2);
}

body {
    font-family: 'Poppins', 'Inter', -apple-system, sans-serif;
    background: var(--light-bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated background */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(125deg, #FFFFFF 0%, #F8F9FA 50%, #E9ECEF 100%);
}

.bg-pattern::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(0, 217, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(251, 176, 59, 0.04) 0%, transparent 60%);
    animation: morphBackground 15s ease-in-out infinite;
}

@keyframes morphBackground {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}

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

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-nav {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-secondary {
    background: rgba(255, 107, 53, 0.1);
    color: var(--text);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

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

/* Hero Carousel */
.hero-section {
    position: relative;
    z-index: 1;
    padding-top: 80px;
    height: 100vh;
    display: flex;
    align-items: center;
}

.carousel-container {
    width: 100%;
    height: calc(100vh - 80px);
    margin: 0 auto;
}

.carousel {
    position: relative;
    overflow: hidden;
    height: 100%;
    background: white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    padding: 4rem 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.slide-content {
    flex: 1;
    max-width: 600px;
    padding-right: 2rem;
}

.slide-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.slide-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    border: none;
}

.btn-hero.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-hero.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.btn-hero.btn-secondary {
    background: rgba(255, 107, 53, 0.1);
    color: var(--text);
    border: 1px solid var(--glass-border);
}

.btn-hero.btn-secondary:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

.slide-visual {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-width: 600px;
}

.visual-icon {
    font-size: 18rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.carousel-controls {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 1rem;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    width: 40px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 3rem;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    padding: 1rem;
    opacity: 0.5;
    font-weight: 300;
    line-height: 1;
}

.carousel-arrow:hover {
    opacity: 1;
    color: var(--primary);
    transform: translateY(-50%) scale(1.2);
}

.carousel-arrow.prev { 
    left: 2rem;
}

.carousel-arrow.next { 
    right: 2rem;
}

/* Services Section */
.services-section {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
    background: var(--light-bg);
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Estilos para o logo */
.logo-image {
    max-height: 40px;
    max-width: 150px;
    object-fit: contain;
}

.client-logo .logo-image {
    max-height: 35px;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text);
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05), transparent);
    transform: translate(50%, -50%);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.service-card:hover::before {
    transform: translate(30%, -30%) scale(1.5);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    color: white;
}

.service-icon.social { background: linear-gradient(135deg, #E1306C, #F77737); }
.service-icon.traffic { background: linear-gradient(135deg, #667EEA, #764BA2); }
.service-icon.web { background: linear-gradient(135deg, var(--cyan), #0EA5E9); }
.service-icon.seo { background: linear-gradient(135deg, var(--success), #059669); }
.service-icon.gmb { background: linear-gradient(135deg, #FFE01B, #FFA500); }
.service-icon.consulting { background: linear-gradient(135deg, var(--primary), var(--purple)); }

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    color: var(--text);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta-section {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
    background: var(--light-bg);
}

.cta-card {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary), var(--purple));
    border-radius: 32px;
    padding: 5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 1.3rem 3rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    border: none;
}

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

.btn-cta-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.btn-cta-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    background: var(--dark);
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 2rem 2rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-link:hover {
    color: var(--primary);
    padding-left: 5px;
}

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

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }

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

    .carousel-slide {
        padding: 3rem 5rem;
        gap: 3rem;
    }

    .slide-content h1 {
        font-size: 2.8rem;
    }

    .visual-icon {
        font-size: 14rem;
    }

    .carousel-arrow {
        font-size: 2.5rem;
    }

    .carousel-arrow.prev {
        left: 1rem;
    }

    .carousel-arrow.next {
        right: 1rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .btn-nav {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .hero-section {
        padding-top: 70px;
        height: auto;
        min-height: 100vh;
    }

    .carousel-container {
        height: auto;
        min-height: calc(100vh - 70px);
    }

    .carousel {
        border-radius: 0;
    }

    .carousel-slide {
        flex-direction: column;
        padding: 3rem 1.5rem;
        gap: 2rem;
        justify-content: center;
    }

    .slide-content {
        padding-right: 0;
        max-width: 100%;
        text-align: center;
    }

    .slide-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .slide-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .slide-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .slide-actions {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .btn-hero {
        padding: 1rem 2rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .slide-visual {
        max-width: 100%;
        height: auto;
        min-height: 250px;
    }

    .visual-icon {
        font-size: 10rem;
    }

    .carousel-arrow {
        font-size: 2rem;
        padding: 0.5rem;
    }

    .carousel-arrow.prev {
        left: 0.5rem;
    }

    .carousel-arrow.next {
        right: 0.5rem;
    }

    .carousel-controls {
        bottom: 1.5rem;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }

    .carousel-dot.active {
        width: 24px;
    }

    /* Services Section Mobile */
    .services-section {
        padding: 4rem 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 4rem 1rem;
    }

    .cta-card {
        padding: 3rem 1.5rem;
        border-radius: 24px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta {
        padding: 1.1rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    /* Footer Mobile */
    .footer {
        padding: 3rem 1rem 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand h3 {
        font-size: 1.6rem;
    }

    .footer-brand p {
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 1.6rem;
    }

    .visual-icon {
        font-size: 8rem;
    }

    .carousel-arrow {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }
}