/* ========================================
   QUETIMNET - CUSTOM STYLES
   ======================================== */

/* Variáveis CSS */
:root {
    --primary-color: #0A428B;
    --secondary-color: #ffcc29;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --white-color: #ffffff;
    --border-color: #dee2e6;
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    --font-family: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}
.satisfy-font {
    font-family: 'Satisfy', cursive;
    font-style: normal;
    font-weight: 600;
}
/* Background Colors */
.bg-primary-custom {
    background: radial-gradient(ellipse at center, #0A428B 0%, #050B30 100%) !important;
}

.bg-secondary-custom {
    background-color: var(--secondary-color) !important;
}

.bg-dark-custom {
    background: linear-gradient(135deg, #1a1a1a 0%, var(--dark-color) 100%);
}

.nav-link { 
    color: var(--dark-color)  
}   
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: var(--primary-color) !important;
}

/* Text Colors */
.text-primary{
    color: var(--primary-color) !important;
}

.text-secondary-custom {
    color: var(--secondary-color) !important;
}

/* Header Styles */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; 
   
    transition: var(--transition);
    padding: 1rem 0;
}

.main-header.scrolled {
    position: fixed !important;
    background: rgba(26, 26, 26, 0.9) !important;
    box-shadow: var(--shadow);
    padding: 0.5rem 0;
}

.absolute-header {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Logo Large Styles */
.logo-large {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 1rem 0;
}

.logo-large img {
    max-height: 120px;
    width: auto;
    transition: var(--transition);
}

.main-header.scrolled .logo-large img {
    max-height: 80px;
}

/* Top Bar Styles */
.top-bar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 40px;
}

.top-bar .btn {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
}

/* Navigation Styles */
.navbar {
    padding: 0.5rem 0;
    transition: var(--transition);
}

.navbar-nav .nav-link {
    padding: 0.75rem 1rem;
}

.navbar-brand img {
    transition: var(--transition);
}

.navbar-nav .nav-link {
    color: var(--white-color) !important;
    font-weight: 500;
    font-size: 0.9rem;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

.social-icons a {
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    height: 100dvh; /* Melhor para mobile - dynamic viewport height */
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    width: 100%;
    height: 100vh;
    height: 100dvh; /* Melhor para mobile - dynamic viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-slide-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Overlay para melhor contraste */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* Content sobre a hero */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    background: rgba(0, 0, 0, 0.3);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(10, 66, 139, 0.8);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: 700;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 30px !important;
}
.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 15px !important;
    height: 15px !important;
    background: rgba(255, 255, 255, 0.5) !important;
    border: 2px solid white;
    opacity: 0.7;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color) !important;
    opacity: 1;
    transform: scale(1.2);
}

/* Remover estilos antigos do carousel */
.hero-bg,
.carousel-control-prev,
.carousel-control-next,
.carousel-indicators {
    display: none;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Plans Section */
.plan-card {
    border: none;
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.plan-speed h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.speed-bar {
    height: 4px;
    border-radius: 2px;
    margin-bottom: 1rem;
}

.plan-features {
    margin: 1.5rem 0;
}

.plan-features li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.plan-apps {
    background-color: #f8f9fa;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
}

.plan-price {
    text-align: center;
    margin: 2rem 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    line-height: 1;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    align-self: flex-start;
    margin-top: 0.2rem;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 0.9;
}

.price-cents {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    align-self: flex-start;
    margin-top: 0.2rem;
}

.price-period {
    font-size: 1rem;
    color: var(--gray-color);
    font-weight: 500;
    align-self: flex-end;
    margin-bottom: 0.3rem;
}

/* Solutions Section */
.solution-item {
    padding: 2rem 1rem;
    transition: var(--transition);
}

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

.solution-item:hover .solution-icon i {
    transform: scale(1.1);
    color: var(--primary-color) !important;
}

.solution-icon i {
    transition: var(--transition);
}

/* Solutions dentro da Plans Section */
.solutions-container {
    position: relative;
}

.solutions-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 204, 41, 0.5) 50%, transparent 100%);
    margin: 0 auto;
    width: 80%;
    left: 10%;
}

.solution-img {
    max-height: 80px;
    width: auto;
    transition: var(--transition); 
}

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

.solutions-container .solution-item h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
}

.script-font {
    font-family: 'Dancing Script', cursive;
    font-style: normal;
    font-weight: 600;
}

 
.apps-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.apps-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
    max-width: 800px;
    margin: 0 auto;
}

.apps-container {
    background: var(--primary-color) !important;
    box-shadow: 0 20px 40px rgba(10, 66, 139, 0.2);
    position: relative;
    overflow: hidden;
}

.apps-swiper {
    padding: 2rem 3rem;
}

.app-item {
    padding: 1rem;
}

.app-placeholder {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: var(--transition);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.app-item:hover .app-placeholder {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.bg-purple {
    background-color: #8e44ad !important;
}

/* Apps Swiper Navigation */
.apps-prev,
.apps-next {
    color: white !important;
    background: rgba(255, 255, 255, 0.2) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    transition: var(--transition);
}

.apps-prev:hover,
.apps-next:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: scale(1.1);
}

.apps-prev::after,
.apps-next::after {
    font-size: 16px !important;
    font-weight: 700;
}

/* Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

 

.service-card {
    height: 400px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 15px 30px rgba(10, 66, 139, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(10, 66, 139, 0.2);
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.service-image img {
    transition: var(--transition);
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 66, 139, 0.6) 0%, rgba(5, 11, 48, 0.9) 100%);
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    background: linear-gradient(135deg, rgba(10, 66, 139, 0.5) 0%, rgba(5, 11, 48, 0.95) 100%);
}

.service-content {
    top: 50%;
    left: 2rem;
    right: 2rem;
    transform: translateY(-50%);
    z-index: 2;
}

.service-badge {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.service-card:hover .service-badge {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.service-content p {
    line-height: 1.6;
    font-weight: 400;
}

.btn-outline-light { 
    border: 2px solid rgba(255, 255, 255);
    color: white;
    background: transparent;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.3);
}

/* App Section */
.app-section {
    position: relative; 
    display: flex;
    align-items: center;
}

.app-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e5799 50%, var(--secondary-color) 100%);
    z-index: 1;
}

.app-gradient-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 40% 70%, rgba(255, 204, 41, 0.1) 0%, transparent 20%);
}

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

.app-badge {
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.app-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-badge {
    display: inline-block;
    font-size: 0.9em;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transform: rotate(-2deg);
    animation: highlight 3s ease-in-out infinite;
}

.app-description {
    font-weight: 500;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.app-stores {
    max-width: 400px;
}

.store-btn {
    display: block;
    transition: var(--transition); 
    overflow: hidden; 
}

.store-btn:hover {
    transform:  scale(1.05); 
}

.store-img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.app-screens {
    z-index: 2;
    position: relative;
}

.app-mockup {
    max-height: 600px;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: float-app 6s ease-in-out infinite;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes highlight {
    0%, 100% {
        transform: rotate(-2deg);
    }
    50% {
        transform: rotate(2deg) scale(1.05);
    }
}

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

 .fundo-geometric-section{
     background: #ffffff url('../img/fundo-geometric.png') no-repeat top center;
     background-size: cover;
     background-attachment: fixed;
 }

 

.customer-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.customer-card {
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(255, 204, 41, 0.2);
    border: none;
    cursor: pointer;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.customer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 204, 41, 0.3);
}

.customer-icon {
    transition: var(--transition);
}

.customer-card:hover .customer-icon {
    transform: scale(1.1);
    animation: pulse 1s ease-in-out;
}

.customer-card h4 {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

 

.faq-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.accordion-item {
    border: none;
    background: transparent;
}

.accordion-button {
    background: var(--primary-color) !important;
    color: white !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 1.5rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(10, 66, 139, 0.2);
    transition: var(--transition);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color) !important;
    color: white !important;
    box-shadow: 0 8px 25px rgba(10, 66, 139, 0.3);
}

.accordion-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 66, 139, 0.3);
}

.accordion-button:focus {
    box-shadow: 0 8px 25px rgba(10, 66, 139, 0.3);
    border: none;
}

.accordion-button::after {
    background-image: none;
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-collapse {
    border: none;
    background: white;
    border-radius: 20px;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-body {
    padding: 2rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-color);
    background: white;
    border-radius: 20px;
}

 

.map-container {
    position: relative;
    transition: var(--transition);
    background: white;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 1rem;
}

.location-info {
    transition: var(--transition);
    border: none;
}

.location-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.location-icon i {
    transition: var(--transition);
}

.location-info:hover .location-icon i {
    transform: scale(1.1);
    color: var(--secondary-color) !important;
}

.location-info h5 {
    font-weight: 700;
    color: var(--primary-color);
}

.location-info p {
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(10, 66, 139, 0.3);
}

/* Buttons */
.btn {
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: none;
    padding: 0.75rem 2rem;
}

.btn-warning {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f4b800 100%);
    color: var(--dark-color);
}

.btn-warning:hover {
    background: linear-gradient(135deg, #f4b800 0%, var(--secondary-color) 100%);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 204, 41, 0.4);
}
.btn-outline-primary{
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 66, 139, 0.4);
}

.btn-outline-warning {
    background: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.btn-outline-warning:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    border: 1px solid var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 204, 41, 0.4);
}

.btn-outline-warning:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    border: 1px solid var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 204, 41, 0.4);
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0856b3 100%);
    color: white;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, #0856b3 0%, var(--primary-color) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 66, 139, 0.4);
}

/* Footer */
footer {
    margin-top: auto;
}

footer h5 {
    color: var(--secondary-color) !important;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer ul li a {
    transition: var(--transition);
}

footer ul li a:hover {
    color: var(--secondary-color) !important;
    padding-left: 5px;
}
.rounded-solut-plans{
    border-radius: 0.9rem;

}

/* Responsive Design */

/* Large screens - Logo grande visível */
@media (min-width: 992px) {
    .main-header {
        min-height: 140px;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.95rem;
        font-weight: 500;
    }
    .rounded-solut-plans{
        border-radius: 50em;
    }
}

/* Medium and small screens */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 2rem;
    }
    
    .main-header {
        background: rgba(26, 26, 26, 0.8) !important;
        padding: 0.5rem 0;
    }
    
    .top-bar {
        flex-direction: column;
        text-align: center;
        padding: 0.5rem 0;
        border-bottom: none;
    }
    
    .top-bar .social-icons {
        margin-bottom: 0.5rem;
        margin-right: 0 !important;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
        background: rgba(26, 26, 26, 0.95);
        border-radius: 0.5rem;
        padding: 1rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
        padding: 0.5rem 1rem;
    }
    
    .social-icons {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    /* Hero Section Responsive - Tablet */
    .hero-section {
        height: 80vh;
        min-height: 600px;
    }
    
    .hero-slide {
        height: 80vh;
        min-height: 600px;
    }
    
    .hero-slide-container {
        height: 80vh;
        min-height: 600px;
    }
    
    .hero-img {
        object-position: center center;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px !important;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .plan-card {
        margin-bottom: 2rem;
    }
    
    .price-value {
        font-size: 2.5rem;
    }
    
    .price-currency {
        font-size: 1rem;
    }
    
    .price-cents {
        font-size: 1.3rem;
    }
    
    .price-period {
        font-size: 0.9rem;
    }
    
    .main-header {
        padding: 0.25rem 0;
    }
    
    .top-bar .btn {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }
    
    .social-icons a {
        font-size: 0.9rem;
    }
    
    /* Hero Section Responsive - Mobile */
    .hero-section {
        height: 70vh;
        min-height: 500px;
        max-height: 700px;
    }
    
    .hero-slide {
        height: 70vh;
        min-height: 500px;
        max-height: 700px;
    }
    
    .hero-slide-container {
        height: 70vh;
        min-height: 500px;
        max-height: 700px;
    }
    
    .hero-swiper {
        height: 100%;
    }
    
    /* Ajustar imagens e vídeos no mobile */
    .hero-img {
        object-fit: cover !important;
        object-position: center center !important;
    }
    
    .hero-media {
        object-fit: cover !important;
        object-position: center center !important;
    }
    
    /* Navegação Hero no mobile */
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px !important;
        height: 35px !important;
        margin-top: -17.5px !important;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 12px !important;
    }
    
    /* Pagination no mobile */
    .swiper-pagination {
        bottom: 20px !important;
    }
    
    .swiper-pagination-bullet {
        width: 12px !important;
        height: 12px !important;
        margin: 0 4px !important;
    }
    
    .solutions-container .solution-item {
        padding: 1rem 0.5rem;
    }
    
    .solution-img {
        max-height: 60px;
    }
    
    .solutions-container .solution-item h5 {
        font-size: 0.9rem;
    }
    
    .apps-title {
        font-size: 1.8rem;
    }
    
    .apps-subtitle {
        font-size: 1rem;
    }
    
    .apps-swiper {
        padding: 1rem 2rem;
    }
    
    .app-placeholder {
        width: 60px;
        height: 60px;
    }
    
    
    .service-card {
        height: 350px;
        margin-bottom: 2rem;
    }
    
    .service-content {
        left: 1.5rem;
        right: 1.5rem;
    }
    
    .service-content p {
        font-size: 1rem;
    }
    
    
    .app-section {
        min-height: auto; 
    }
    
    .app-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .app-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .app-mockup {
        max-height: 400px;
    }
    
    .store-img {
        height: 50px;
    }
    
    .app-stores {
        justify-content: center;
        align-items: center;
    }
    
    .highlight-badge {
        font-size: 0.8em;
    }
    
    .customer-title {
        font-size: 2rem;
    }
    
    .customer-card {
        min-height: 180px;
        margin-bottom: 1rem;
    }
    
    .customer-card h4 {
        font-size: 1rem;
    }
    
    .customer-icon i {
        font-size: 3rem !important;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .accordion-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    
    
    .map-container iframe {
        height: 300px;
    }
    
    .location-info {
        margin-top: 2rem;
    }
    
    .location-icon i {
        font-size: 2.5rem !important;
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease-out;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loaded {
    opacity: 1;
}

/* Utilities */
.min-vh-100 {
    min-height: 100vh;
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0856b3 100%);
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f4b800 100%);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}