:root {
    --primary-color: #42B3E7;
    --secondary-color: #1A2557;
    --title-color: #0a0e21;
    --accent-color: #0f477b;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --background-light: #f8fafc;
    --background-white: #ffffff;
    --border-radius: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Styles */
body {
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

h1 {
    font-size: 55px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
}

h2 {
    color: var(--title-color);
    font-size: 45px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
}

h3 {
    color: var(--title-color);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
}

@media (max-width: 767px) {
    h2 {
        font-size: 30px;
    }

    h1 {
        font-size: 40px;
    }

    .lead {
        font-size: 17px;
    }
}

/* Highlight Text */
.highlight {
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header Customizations */
.navbar {
    backdrop-filter: blur(10px);
    transition: var(--transition);
        padding-top: 8px;
    padding-bottom: 8px;
}

.navbar-brand img {
    max-width: 107px;
}

.nav-item {
    padding: 0 10px;
}

.nav-link {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

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

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

/* CTA Button */
.cta-button {
    background: var(--primary-color);
    border: 2px;
    border-radius: var(--border-radius) !important;
    font-weight: 600;
    box-shadow: 0 4px 6px -1px rgb(0, 0, 0, 0.1);
    font-size: 18px;
    padding: 8px 20px;
}

.cta-button:hover {
    background: transparent !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    box-shadow: 0 10px 15px -3px rgb(0, 0, 0, 0.1);
}

/* Banner Section */
.banner {
    min-height: 100vh;
    background: url('../img/banner-topo.jpg') center/cover no-repeat;
    color: white;
    display: flex;
    align-items: center;
    padding: 85px 0 0;
}

.banner-overlay {
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.hero-image {
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.stat {
    padding: 6px 12px;
    border-radius: var(--border-radius);
    /* box-shadow: var(--shadow-sm); */
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    border: 2px solid #fbfdff;
}

.stat small{
    /*padding-top: 5px;*/
    padding-left: 5px;
}

.stat img {
    width: 15px;
    margin-right: 3px;
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon img {
    max-width: 40px;
    max-height: 40px;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-card h5 {
    font-size: 18px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 0;
}


/* Services Section */
.services-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    position: relative;
    overflow: hidden;
}

.text-services {
    font-size: 17px !important;
    line-height: 1.5;
}

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

.service-card {
    position: relative;
    padding: 30px;
    background-color: #fff;
    border: 0;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    z-index: 1;
}

.service-card::before,
.service-card::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    transition: transform 0.5s ease;
    background-image: linear-gradient(
        to bottom,
        var(--primary-color) 0%,
        #297eb2 38%,
        var(--secondary-color) 100%
    );
}

.service-card::before {
    transform: translate(-100%, -100%);
}

.service-card::after {
    transform: translate(100%, 100%);
}

.service-card:hover::before,
.service-card:hover::after {
    transform: translate(0, 0);
}

.service-card-body {
    position: relative;
    z-index: 2;
    transition: color 0.3s;
}

.service-card-body h6 {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.service-card-body p {
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
    transition: color 0.3s;
}

.service-card:hover .service-card-body h6,
.service-card:hover .service-card-body p {
    color: #fff;
}

/* Brand Icons */
.brands p {
    font-size: 20px;
}

.brand-image img {
    width: 100%;
}

.brand-content h6 {
    color: var(--title-color);
    font-size: 20px;
    font-weight: 600;
}

.brand-content p {
    color: var(--text-primary);
    font-size: 14px;
}

.brands-button {
    background: var(--primary-color);
    border: 2px;
    border-radius: var(--border-radius) !important;
    box-shadow: 0 4px 6px -1px rgb(0, 0, 0, 0.1);
    font-size: 12px;
    padding: 8px 12px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
}

.brands-button:hover {
    background: transparent !important;
    border: 1px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    box-shadow: 0 10px 15px -3px rgb(0, 0, 0, 0.1);
}

.brands-button-aquarela {
    background: #462A5A;
    border: 1px solid #462A5A !important;
}
.brands-button-aquarela:hover {
    border: 1px solid #462A5A !important;
    color: #462A5A !important;
}
.brands-button-goya {
    background: #7B361D;
    border: 1px solid #7B361D !important;
}
.brands-button-goya:hover {
    border: 1px solid #7B361D !important;
    color: #7B361D !important;
}
.brands-button-change {
    background: #FF4E01;
    border: 1px solid #FF4E01 !important;
}
.brands-button-change:hover {
    border: 1px solid #FF4E01 !important;
    color: #FF4E01 !important;
}
.brands-button-passforall {
    background: #FFC300;
    border: 1px solid #FFC300 !important;
    color:#000;
}
.brands-button-passforall:hover {
    border: 1px solid #FFC300 !important;
    color: #FFC300!important;
}

/** Cores */
.aquarela {
    color: #462A5A !important;
}

.goya {
    color: #7B361D !important;
}

.change {
    color: #FF4E01 !important;
}

.passforall {
    color:#FFC300 !important;
}

/* Contact Form */
.contact-form {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(66, 179, 231, 0.25);
}

.form-select {
    padding: 12px 16px;
    color: #212121;
    font-size: 14px;
    border-radius: 12px;
}

.form-control {
    padding: 12px 16px;
    color: #212121;
    font-size: 14px;
    border-radius: 12px;
}

textarea {
        border-radius: 12px;
}

.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(66, 179, 231, 0.25);
}

.contact-form  .cta-button {
    color: #fff !important;
    border: 2px solid var(--primary-color) !important;
}
.contact-form  .cta-button:hover {
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
}

/** Footer **/
.bg-dark {
    font-size: 13px;
    background-color: var(--secondary-color) !important;
}

/* Card Hover Effects */
.card {
    transition: var(--transition);
    border: none;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .banner {
        min-height: 80vh;
    }

    .hero-image img {
        margin: 40px 0 ;
    }

    .feature-card {
        padding: 10px;
    }
    
    .services-section .row {
        text-align: center;
    }
    
    .services-section .col-lg-6:first-child {
        margin-bottom: 2rem;
    }

    .p-4 {
        padding: 10px !important;
    }

    .text-services {
        font-size: 17px !important;
        line-height: 1.5;
    }

    .brands p {
        font-size: 17px;
        line-height: 1.5;
    }

    .brand-content p {
        color: var(--text-primary);
        font-size: 15px;
    }
}

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

.card {
    animation: fadeInUp 0.6s ease-out;
}
