:root {
    --theme-color: #ff8100;
    --theme-color-hover: #e67400;
    --primary: #32326b;
    --secondary: #3d3a3a;
    --dark: #121212;
    --dark-light: #1e1e1e;
    --light: #f4f4f4;
    --white: #ffffff;
    --grey: #777777;
    
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--grey);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-theme {
    background: var(--theme-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-theme::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--white);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-theme:hover::before {
    width: 100%;
}

.btn-theme:hover {
    color: var(--dark);
}

/* Hover preto com texto branco quando o fundo é claro (classe on-light ou na navbar sticky) */
.btn-theme.on-light::before,
.navbar.sticky .btn-theme::before {
    background: var(--dark);
}

.btn-theme.on-light:hover,
.navbar.sticky .btn-theme:hover {
    background: var(--dark) !important;
    color: var(--white) !important;
}

.btn-theme.on-light:hover i,
.navbar.sticky .btn-theme:hover i {
    color: var(--white) !important;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    transition: all 0.4s ease;
    background: transparent;
    position: absolute;
    width: 100%;
    z-index: 999;
}

.navbar.sticky {
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 10px 0;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--white) !important;
    margin: 0 15px;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.navbar.sticky .nav-link {
    color: var(--dark) !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--theme-color);
    transition: all 0.3s ease;
}

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

@media all and (min-width: 992px) {
    .navbar .nav-item.dropdown:hover .dropdown-menu { display: block; }
    .navbar .nav-item.dropdown:hover .dropdown-toggle::after { border-top-color: var(--theme-color); }
}
.dropdown-menu { background: var(--dark); border-radius: 10px; border: 1px solid rgba(255,255,255,0.1); }
.dropdown-item { color: var(--grey); font-size: 13px; padding: 8px 20px; }
.dropdown-item:hover { background: var(--theme-color); color: var(--white); }

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark-light);
    overflow: hidden;
    color: var(--white);
    padding: 120px 0 60px;
}

.hero::before {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,129,0,0.15) 0%, rgba(255,129,0,0) 70%);
    top: -200px;
    right: -200px;
    z-index: 1;
}

.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,129,0,0.08) 0%, rgba(255,129,0,0) 70%);
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: transform 0.2s ease-out, opacity 0.4s ease;
    will-change: transform;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-title span {
    color: var(--theme-color);
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    z-index: 2;
    width: 340px;
    margin: 0 auto;
    cursor: pointer;
}

.phone-frame {
    position: relative;
    width: 100%;
    padding-top: 200%; /* proporção 9:19.5 de um celular */
    background: #111;
    border-radius: 45px;
    border: 8px solid #333;
    box-shadow:
        0 0 0 3px #1a1a1a,
        0 40px 80px rgba(0,0,0,0.6),
        0 0 60px rgba(255,129,0,0.08);
    overflow: hidden;
}

.phone-frame::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 0 0 18px 18px;
    z-index: 10;
}

.phone-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

.phone-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background 0.3s ease;
}

.phone-mockup:hover .phone-play-overlay {
    background: rgba(0,0,0,0.15);
}

.phone-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(255,129,0,0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phone-mockup:hover .phone-play-btn {
    transform: scale(1.1);
    box-shadow: 0 0 60px rgba(255,129,0,0.9);
}

.phone-play-btn i {
    font-size: 32px;
    color: #fff;
    margin-left: 4px;
}

@media (max-width: 991px) {
    .hero-title { font-size: 3rem; }
    .phone-mockup { width: 280px; }
    .navbar-collapse {
        background: rgba(30, 30, 30, 0.98);
        backdrop-filter: blur(10px);
        padding: 25px;
        border-radius: 15px;
        margin-top: 15px;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
    .navbar.sticky .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(0, 0, 0, 0.08);
    }
    .navbar.sticky .nav-link {
        color: var(--dark) !important;
    }
    .nav-link {
        margin: 10px 0;
    }
    .nav-right {
        margin-top: 15px;
    }
}
@media (max-width: 575px) {
    .hero-title { font-size: 2.2rem; }
    .phone-mockup { width: 240px; }
}

/* Sections */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-subtitle {
    font-family: var(--font-heading);
    color: var(--theme-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

/* Services */
.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
}

.service-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--theme-color);
    transition: all 0.4s ease;
    z-index: -1;
}

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

.service-card:hover::after {
    height: 100%;
}

.service-card:hover h3, 
.service-card:hover p, 
.service-card:hover ul li a {
    color: var(--white) !important;
}

.service-icon {
    font-size: 50px;
    color: var(--theme-color);
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    color: var(--white);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.service-list li {
    margin-bottom: 10px;
}

.service-list li a {
    color: var(--grey);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li a i {
    font-size: 12px;
    color: var(--theme-color);
}

.service-card:hover .service-list li a i {
    color: var(--white);
}

/* Portfolio */
.portfolio-area {
    background: var(--dark);
    color: var(--white);
}

.portfolio-area .section-title {
    color: var(--white);
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
}

.portfolio-item img {
    width: 100%;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,129,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    transform: translateY(20px);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-overlay a {
    color: var(--white);
    font-size: 40px;
}

.portfolio-slider {
    padding: 20px 0 60px;
}

/* Swiper Pagination Bullets - Global Styling */
.swiper-pagination-bullet {
    background: #ffffff !important;
    opacity: 0.65 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    width: 10px !important;
    height: 10px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--theme-color) !important;
    opacity: 1 !important;
    width: 12px !important;
    height: 12px !important;
}

/* Hover Effects and Micro-interactions */
.hover-elevate {
    transition: all 0.3s ease;
}
.hover-elevate:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}
.transition-scale {
    transition: transform 0.5s ease;
}
.hover-elevate:hover .transition-scale {
    transform: scale(1.05);
}
.hover-underline {
    position: relative;
}
.hover-underline::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--theme-color);
    transition: width 0.3s ease;
}
.hover-underline:hover::after {
    width: 100%;
}

/* Testimonials */
.testimonial-slider {
    padding: 20px 0 60px;
}

.testi-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    margin: 15px;
}

.testi-video {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Special Blog Button */
.btn-theme-blog {
    background: var(--theme-color);
    color: var(--white);
    padding: 14px 38px;
    border-radius: 50px;
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 2px solid transparent;
    box-shadow: 0 10px 25px rgba(255, 129, 0, 0.35);
}

.btn-theme-blog:hover {
    background: var(--white);
    color: var(--dark) !important;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--theme-color);
}

.btn-theme-blog:hover .btn-blog-icon i,
.btn-theme-blog:hover .btn-blog-text span {
    color: var(--dark) !important;
}

.btn-blog-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: background 0.4s ease;
}

.btn-theme-blog:hover .btn-blog-icon {
    background: rgba(255, 129, 0, 0.1);
}

.btn-blog-icon i {
    font-size: 18px;
    color: var(--white);
    transition: color 0.4s ease;
}

.btn-blog-text span {
    transition: color 0.4s ease;
}

/* Premium CTA Section Styling */
.cta-area {
    background: linear-gradient(135deg, var(--theme-color) 0%, #e65c00 100%);
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    margin: 0 30px 80px;
    padding: 80px 60px;
    box-shadow: 0 20px 50px rgba(255, 129, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.8;
    pointer-events: none;
    z-index: 1;
}

.cta-area::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 70%);
    bottom: -175px;
    right: -100px;
    pointer-events: none;
    z-index: 1;
}

.cta-area .container {
    position: relative;
    z-index: 2;
}

.btn-cta-whatsapp {
    background: var(--white);
    color: var(--dark) !important;
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta-whatsapp:hover {
    background: var(--dark);
    color: var(--white) !important;
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.1);
}

.btn-cta-whatsapp i {
    font-size: 24px;
    color: #25D366; /* verde oficial do WhatsApp */
    transition: color 0.4s ease, transform 0.4s ease;
}

.btn-cta-whatsapp:hover i {
    color: #25D366;
    transform: rotate(10deg) scale(1.1);
}

@media (max-width: 991px) {
    .cta-area {
        margin: 0 15px 50px;
        padding: 60px 30px;
        border-radius: 20px;
        text-align: center;
    }
    .btn-cta-whatsapp {
        padding: 14px 35px;
        font-size: 16px;
    }
}

/* Footer */
.footer-area {
    background: var(--dark-light);
    color: var(--grey);
    padding: 80px 0 0;
}

.footer-logo {
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
    max-width: 150px;
}

.footer-widget h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--theme-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links li a {
    color: var(--grey);
    transition: all 0.3s;
}

.footer-links li a:hover {
    color: var(--theme-color);
    padding-left: 5px;
}

.social-icons a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    color: var(--white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--theme-color);
    transform: translateY(-5px);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 25px 0;
    margin-top: 50px;
    text-align: center;
}

/* Breadcrumbs Custom */
.breadcrumb {
    --bs-breadcrumb-divider: '>';
    font-family: var(--font-heading);
    font-weight: 500;
}

.breadcrumb-item a {
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--white) !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5) !important;
    font-weight: bold;
}

