/* Base Styles */
:root {
    --primary-color: #2978F2; /* Azul Médio (usado em "RMJ") */
    --secondary-color: #3B3F45; /* Cinza Escuro (usado em "concept") */
    --accent-color: #00C2FF; /* Azul Claro */
    --light-color: #F5F9FF; /* Very light blue tint - keeping this for readability */
    --dark-color: #3B3F45; /* Cinza Escuro for text */
    --white: #ffffff;
    --gray: #7A8599; /* Keeping this gray for subtle elements */
    --light-gray: #F0F4F9; /* Keeping light gray for backgrounds */
    --success-color: #1AC8C8; /* Verde Água for success messages */
    --warning-color: #FF7C36; /* Laranja for warnings */
    --danger-color: #D43BD8; /* Magenta for error/danger states */
    --purple: #8F3EFF; /* Roxo as an additional highlight color */
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --box-shadow: 0 5px 15px rgba(41, 120, 242, 0.1);
    --transition: all 0.3s ease;
}

/* Gradient Stripe */
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px; /* 0.05cm ≈ 5px */
    background: linear-gradient(to right, #7957cf, #ee3f95, #28a4d5);
    z-index: 1001;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
    background-color: #f8f9fa;
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn:after {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: width 0.4s ease;
    z-index: -1;
    border-radius: 50px;
}

.btn:hover:after {
    width: 100%;
}

.primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    box-shadow: 0 10px 20px rgba(41, 120, 242, 0.3);
}

.primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(41, 120, 242, 0.4);
}

.secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background-color: rgba(41, 120, 242, 0.1);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    line-height: 1.2;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(41, 120, 242, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding-top: 5px; /* Add padding to account for the stripe */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 60px;
    width: auto;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
}

.desktop-nav li {
    margin: 0 15px;
    position: relative;
}

.desktop-nav a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.desktop-nav a:hover {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: var(--box-shadow);
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
    top: 100%;
    left: 0;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.dropdown-content a {
    color: var(--dark-color);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: var(--light-gray);
}

.dropdown:hover .dropdown-content {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.right-nav {
    display: flex;
    align-items: center;
}

.language-selector {
    display: flex;
    margin-right: 20px;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    opacity: 0.7;
    transition: var(--transition);
}

.lang-btn:hover, .lang-btn.active {
    opacity: 1;
    transform: scale(1.1);
}

.lang-btn img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-btn {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(41, 120, 242, 0.1);
    transition: var(--transition);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    width: 30px;
    height: 30px;
    justify-content: space-around;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: var(--dark-color);
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin: 15px 0;
}

.mobile-nav a {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 1.1rem;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
}

.language-selector-mobile {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
}

/* Hero Section with Slider */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide video, .slide img {
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
}

/* Benefits Bar */
.benefits-bar {
    background: linear-gradient(to right, #7957cf, #ee3f95, #28a4d5);
    padding: 20px 0;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 2;
}

.benefits-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: var(--white);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--white);
    margin-right: 10px;
}

.benefit-item span {
    font-weight: 500;
    color: var(--white);
}

@media (max-width: 480px) {
    .benefit-item {
        width: 100%;
    }
}

/* Product Categories */
.product-categories {
    padding: 100px 0;
    background-color: var(--light-color);
    position: relative;
}

.product-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(41, 120, 242, 0.05) 0%, transparent 400px);
    pointer-events: none;
}

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

.category-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(50px);
    opacity: 0;
}

.category-card.visible {
    transform: translateY(0);
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-image {
    position: relative;
    overflow: hidden;
    padding: 20px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
}

.card-image img {
    max-height: 180px;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(41, 120, 242, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover .overlay {
    opacity: 1;
}

.card-content {
    padding: 20px;
    text-align: center;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.card-content p {
    color: var(--gray);
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background-color: var(--white);
}

.product-filter {
    display: flex;
    align-items: center;
    background-color: var(--light-color);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-label {
    margin-right: 20px;
    font-weight: 600;
    color: var(--dark-color);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
}

.product-filter-btn {
    background-color: var(--white);
    border: none;
    border-radius: 30px;
    padding: 10px 15px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    color: var(--dark-color);
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.product-filter-btn i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.product-filter-btn:hover, .product-filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.featured-swiper {
    display: none;
    padding: 20px 10px 50px;
}

.product-card {
    position: relative;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 1;
}

.product-image {
    position: relative;
    padding: 20px;
    background-color: var(--light-gray);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.product-info p {
    color: var(--gray);
    margin-bottom: 20px;
}

.product-info .btn {
    margin-top: auto;
}

.featured-swiper .swiper-pagination {
    bottom: 0;
}

.featured-swiper .swiper-button-next,
.featured-swiper .swiper-button-prev {
    color: var(--primary-color);
    background-color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--box-shadow);
}

.featured-swiper .swiper-button-next::after,
.featured-swiper .swiper-button-prev::after {
    font-size: 18px;
}

/* Media queries for featured products */
@media (max-width: 1024px) {
    .featured-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .product-filter {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-label {
        margin-bottom: 10px;
    }
    
    .filter-buttons {
        width: 100%;
        justify-content: flex-start;
    }
    
    .product-filter-btn {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-image {
        height: 180px;
        padding: 15px;
    }
    
    .product-image img {
        max-height: 150px;
    }
}

@media (max-width: 576px) {
    .featured-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-filter {
        padding: 15px;
    }
    
    .filter-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .product-filter-btn {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 15px;
        margin-bottom: 5px;
        font-size: 0.9rem;
    }
    
    .product-filter-btn i {
        width: 20px;
        text-align: center;
        margin-right: 10px;
    }
    
    .product-card {
        margin-bottom: 15px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .featured-swiper {
        display: none;
    }
}

@media (max-width: 768px) {
    .featured-products-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .featured-swiper {
        display: none;
    }
}

/* About Section - Updated */
.about {
    padding: 100px 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.about-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.shape-1 {
    background-color: var(--primary-color);
    width: 500px;
    height: 500px;
    top: -150px;
    left: -150px;
}

.shape-2 {
    background-color: var(--accent-color);
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -100px;
}

.shape-3 {
    background: linear-gradient(135deg, var(--primary-color), var(--purple));
    width: 300px;
    height: 300px;
    top: 40%;
    left: 30%;
    transform: translateY(-50%);
    opacity: 0.05;
}

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

.fancy-title {
    font-size: 3.5rem !important;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    letter-spacing: -0.5px;
}

.title-underline {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.title-underline span {
    height: 4px;
    width: 80px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 4px;
    position: relative;
}

.title-underline span::before, 
.title-underline span::after {
    content: "";
    position: absolute;
    height: 4px;
    width: 4px;
    border-radius: 50%;
    background: var(--primary-color);
    top: 0;
}

.title-underline span::before {
    left: -10px;
}

.title-underline span::after {
    right: -10px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 20px;
}

.about-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.fancy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.fancy-list li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.fancy-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
}

.about-section {
    margin: 50px 0;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(41, 120, 242, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(41, 120, 242, 0.15);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.about-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(41, 120, 242, 0.1), rgba(0, 194, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.about-card-icon i {
    font-size: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-card p {
    color: var(--gray);
    line-height: 1.8;
    flex-grow: 1;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    background: rgba(41, 120, 242, 0.03);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(41, 120, 242, 0.1);
}

.value-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: white;
    box-shadow: 0 15px 30px rgba(41, 120, 242, 0.1);
}

.value-item i {
    font-size: 30px;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.value-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.value-content p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
}

.about-footer {
    margin-top: 40px;
}

.about-conclusion {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--dark-color);
    margin: 20px 0 30px;
    line-height: 1.8;
}

.about-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.about-image {
    position: relative;
    padding: 0 20px;
}

.image-wrapper {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 80px rgba(41, 120, 242, 0.2);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: all 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    bottom: -20px;
    left: -20px;
    border: 3px dashed var(--primary-color);
    border-radius: 20px;
    opacity: 0.2;
    z-index: -1;
    animation: rotate 50s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(41, 120, 242, 0.3);
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

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

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.2;
}

.btn.secondary-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn.secondary-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(41, 120, 242, 0.2);
}

.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries for About Section */
@media (max-width: 1200px) {
    .fancy-title {
        font-size: 3rem !important;
    }
    
    .about-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .value-item {
        padding: 20px;
    }
    
    .experience-badge {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .fancy-title {
        font-size: 2.8rem !important;
    }
    
    .about-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .about-values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 80px 0;
    }
    
    .fancy-title {
        font-size: 2.4rem !important;
    }
    
    .about-intro {
        font-size: 1.1rem;
    }
    
    .about-image {
        padding: 0;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
    
    .experience-badge .years {
        font-size: 2rem;
    }
    
    .experience-badge .text {
        font-size: 0.8rem;
    }
    
    .about-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .about {
        padding: 60px 0;
    }
    
    .fancy-title {
        font-size: 2rem !important;
    }
    
    .about-values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-item {
        padding: 15px;
    }
    
    .about-conclusion {
        font-size: 1.1rem;
    }
    
    .experience-badge {
        width: 90px;
        height: 90px;
        bottom: 15px;
        right: 15px;
    }
    
    .experience-badge .years {
        font-size: 1.8rem;
    }
}

/* Testimonials */
.testimonials {
    background-color: var(--white);
    padding: 80px 0;
}

.testimonial-swiper {
    padding-bottom: 50px;
}

.testimonial {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
    height: 100%;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 15px;
}

.quote p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

/* Client Image in Testimonials */
.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    font-weight: 600;
    color: var(--primary-color);
}

.client-details p {
    color: var(--gray);
    font-size: 0.9rem;
}

.rating {
    color: var(--warning-color); /* Using Laranja/Orange color */
    font-size: 1.2rem;
}

/* Call to Action */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color), var(--purple));
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

/* Contact Section - Updated with enhanced layout */
.contact {
    padding: 100px 0;
    background-color: var(--light-color);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(41, 120, 242, 0.08) 0%, transparent 400px);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-form-wrapper {
    position: relative;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
}

.form-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 12px;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    resize: none;
    transition: all 0.3s ease;
    background-color: var(--light-gray);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(41, 120, 242, 0.1);
    background-color: var(--white);
}

.contact-form button {
    margin-top: 10px;
    align-self: flex-start;
    padding: 15px 35px;
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 12px;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.contact-card {
    background-color: var(--white);
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

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

.contact-card .icon {
    width: 70px;
    height: 70px;
    background-color: rgba(41, 120, 242, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card .icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.contact-card h3 {
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-card p {
    color: var(--gray);
    line-height: 1.6;
}

.contact-social {
    margin-top: 20px;
}

.contact-social h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

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

.contact-social .social-icons a {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

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

@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 70px 0;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 50px 0 20px;
}

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

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-logo {
    height: 40px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-country-logo {
    height: 30px;
    margin-left: 15px;
    display: inline-block;
    vertical-align: middle;
}

.about-footer p {
    margin-bottom: 20px;
}

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

.social-icons a {
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.links ul {
    list-style: none;
}

.links ul li {
    margin-bottom: 10px;
}

.links ul li a {
    color: var(--light-color);
    transition: var(--transition);
}

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

.contact-footer p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-footer p i {
    margin-right: 10px;
    color: var(--accent-color);
}

.newsletter p {
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.newsletter-form button {
    padding: 10px 15px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--primary-color);
}

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

/* Mobile Action Bar */
.mobile-action-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    box-shadow: 0 -2px 10px rgba(41, 120, 242, 0.2);
    padding: 12px 0;
    justify-content: space-around;
    z-index: 1000;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    font-size: 1.3rem;
    padding: 8px;
    transition: transform 0.3s ease;
}

.action-btn:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.action-btn:active {
    transform: scale(0.95);
}

.language-dropdown {
    position: relative;
}

.language-dropdown-content {
    position: fixed;
    display: none;
    padding: 15px;
    background-color: var(--primary-color);
    border-radius: 15px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 80px; 
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    min-width: 200px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.language-dropdown.active .language-dropdown-content {
    opacity: 1;
    visibility: visible;
    display: flex;
}

.language-dropdown-content::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--primary-color);
}

.language-dropdown-content .lang-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.language-dropdown-content .lang-btn:hover {
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.language-dropdown-content .lang-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .mobile-action-bar {
        display: flex;
    }

    .language-dropdown-content {
        padding: 20px;
    }
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    z-index: 99;
}

.scroll-top-btn.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
}

/* Media Queries */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .desktop-nav, .right-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-nav.active {
        display: block;
    }
    
    .hero-section {
        height: 90vh;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .category-grid {
        gap: 25px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .mobile-action-bar {
        display: flex;
    }
    
    main {
        margin-bottom: 65px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .scroll-top-btn {
        bottom: 70px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        width: 100%;
    }
    
    .hero-slider {
        height: 70vh;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
}