/* Reset y variables */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #17446A;
    --secondary-color: #4593C9;
    --accent-color: #00D2D0;
    --light-accent: #32C8FC;
    --text-white: #FFFFFF;
    --text-light: #EAF9F9;
    --bg-gradient: linear-gradient(269.89deg, #17446a 49.91%, #4593c9 98.63%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    overflow-x: hidden;
    height: 100%;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

* {
    font-family: "Open Sans";
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", sans-serif;
}

*:focus {
    outline: none;
}

.wrapper {
    width: 100%;
    max-width: 1392px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Grid System - Flexbox Grid */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1rem;
    margin-right: -1rem;
}

.row.reverse {
    flex-direction: row-reverse;
}

.row.middle-xs {
    align-items: center;
}

.row.start-xs {
    justify-content: flex-start;
}

.row.center-xs {
    justify-content: center;
}

.row.end-xs {
    justify-content: flex-end;
}

.row.between-xs {
    justify-content: space-between;
}

.row.around-xs {
    justify-content: space-around;
}

.col-xs-12,
.col-xs-11,
.col-xs-10,
.col-xs-9,
.col-xs-8,
.col-xs-7,
.col-xs-6,
.col-xs-5,
.col-xs-4,
.col-xs-3,
.col-xs-2,
.col-xs-1 {
    box-sizing: border-box;
    padding: 1rem;
}

.col-xs-12 { flex-basis: 100%; max-width: 100%; }
.col-xs-11 { flex-basis: 91.66666667%; max-width: 91.66666667%; }
.col-xs-10 { flex-basis: 83.33333333%; max-width: 83.33333333%; }
.col-xs-9 { flex-basis: 75%; max-width: 75%; }
.col-xs-8 { flex-basis: 66.66666667%; max-width: 66.66666667%; }
.col-xs-7 { flex-basis: 58.33333333%; max-width: 58.33333333%; }
.col-xs-6 { flex-basis: 50%; max-width: 50%; }
.col-xs-5 { flex-basis: 41.66666667%; max-width: 41.66666667%; }
.col-xs-4 { flex-basis: 33.33333333%; max-width: 33.33333333%; }
.col-xs-3 { flex-basis: 25%; max-width: 25%; }
.col-xs-2 { flex-basis: 16.66666667%; max-width: 16.66666667%; }
.col-xs-1 { flex-basis: 8.33333333%; max-width: 8.33333333%; }

.col-xs-offset-12 { margin-left: 100%; }
.col-xs-offset-11 { margin-left: 91.66666667%; }
.col-xs-offset-10 { margin-left: 83.33333333%; }
.col-xs-offset-9 { margin-left: 75%; }
.col-xs-offset-8 { margin-left: 66.66666667%; }
.col-xs-offset-7 { margin-left: 58.33333333%; }
.col-xs-offset-6 { margin-left: 50%; }
.col-xs-offset-5 { margin-left: 41.66666667%; }
.col-xs-offset-4 { margin-left: 33.33333333%; }
.col-xs-offset-3 { margin-left: 25%; }
.col-xs-offset-2 { margin-left: 16.66666667%; }
.col-xs-offset-1 { margin-left: 8.33333333%; }

/* Media queries para md (min-width: 64rem / 1024px) */
@media only screen and (min-width: 64rem) {
    .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7,
    .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1 {
        box-sizing: border-box;
        padding: 1rem;
    }
    
    .col-md-12 { flex-basis: 100%; max-width: 100%; }
    .col-md-11 { flex-basis: 91.66666667%; max-width: 91.66666667%; }
    .col-md-10 { flex-basis: 83.33333333%; max-width: 83.33333333%; }
    .col-md-9 { flex-basis: 75%; max-width: 75%; }
    .col-md-8 { flex-basis: 66.66666667%; max-width: 66.66666667%; }
    .col-md-7 { flex-basis: 58.33333333%; max-width: 58.33333333%; }
    .col-md-6 { flex-basis: 50%; max-width: 50%; }
    .col-md-5 { flex-basis: 41.66666667%; max-width: 41.66666667%; }
    .col-md-4 { flex-basis: 33.33333333%; max-width: 33.33333333%; }
    .col-md-3 { flex-basis: 25%; max-width: 25%; }
    .col-md-2 { flex-basis: 16.66666667%; max-width: 16.66666667%; }
    .col-md-1 { flex-basis: 8.33333333%; max-width: 8.33333333%; }

    .row.middle-md { align-items: center; }
    .row.start-md { justify-content: flex-start; }
    .row.center-md { justify-content: center; }
    .row.end-md { justify-content: flex-end; }
}

/* Media queries para lg (min-width: 90rem / 1440px) */
@media only screen and (min-width: 90rem) {
    .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7,
    .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1 {
        box-sizing: border-box;
        padding: 1rem;
    }
    
    .col-lg-12 { flex-basis: 100%; max-width: 100%; }
    .col-lg-11 { flex-basis: 91.66666667%; max-width: 91.66666667%; }
    .col-lg-10 { flex-basis: 83.33333333%; max-width: 83.33333333%; }
    .col-lg-9 { flex-basis: 75%; max-width: 75%; }
    .col-lg-8 { flex-basis: 66.66666667%; max-width: 66.66666667%; }
    .col-lg-7 { flex-basis: 58.33333333%; max-width: 58.33333333%; }
    .col-lg-6 { flex-basis: 50%; max-width: 50%; }
    .col-lg-5 { flex-basis: 41.66666667%; max-width: 41.66666667%; }
    .col-lg-4 { flex-basis: 33.33333333%; max-width: 33.33333333%; }
    .col-lg-3 { flex-basis: 25%; max-width: 25%; }
    .col-lg-2 { flex-basis: 16.66666667%; max-width: 16.66666667%; }
    .col-lg-1 { flex-basis: 8.33333333%; max-width: 8.33333333%; }

    .row.middle-lg { align-items: center; }
    .row.start-lg { justify-content: flex-start; }
    .row.center-lg { justify-content: center; }
    .row.end-lg { justify-content: flex-end; }
}

/* Visibility classes */
.show { display: block !important; }
.hide { display: none !important; }
.row.show { display: flex !important; }

.show-xs { display: block !important; }
.hide-xs { display: none !important; }
.row.show-xs { display: flex !important; }

@media only screen and (max-width: 40rem) {
    .show-xs-only { display: block !important; }
    .hide-xs-only { display: none !important; }
    .row.show-xs-only { display: flex !important; }
}

@media only screen and (min-width: 64rem) {
    .show-md { display: block !important; }
    .hide-md { display: none !important; }
    .row.show-md { display: flex !important; }
}

@media only screen and (min-width: 90rem) {
    .show-lg { display: block !important; }
    .hide-lg { display: none !important; }
    .row.show-lg { display: flex !important; }
}

/* Utility classes */
.p0 { padding: 0; }
.pt0 { padding-top: 0; }
.pb0 { padding-bottom: 0; }
.pl0 { padding-left: 0; }
.pr0 { padding-right: 0; }
.text-right { text-align: right; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.flex { display: flex; }
.p-r { position: relative; }

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 197px;
    z-index: 1000;
    transition: height 0.5s;
}

.navbar.scrolled {
    height: 120px;
}

.navbar.scrolled .navbar-top {
    height: 0;
    overflow: hidden;
}

.navbar-top {
    background: var(--bg-gradient);
    height: 77px;
    transition: height 0.5s, opacity 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-top .wrapper {
    height: 100%;
    width: 100%;
    max-width: 1392px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
}

.navbar-top .row {
    margin: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-top .col-md-3,
.navbar-top .col-md-6 {
    padding: 0 0.5rem;
}

.navbar-top .col-md-3:first-child {
    padding-left: 0;
}

.navbar-top .col-md-3:last-child {
    padding-right: 0;
}

.navbar-top-content {
    display: flex;
    align-items: center;
    height: 100%;
}

.social-links {
    display: flex;
    align-items: center;
}

.social-links a {
    margin-right: 20px;
}

.social-links img {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: transform 0.3s;
}

.social-links img:hover {
    transform: scale(1.1);
}

.text-follow {
    display: flex;
    align-items: center;
}

.text-follow a {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.search-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
}

.search-container input {
    flex: 1;
    max-width: 80%;
    height: 40px;
    padding: 0 16px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.search-container input::placeholder {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.btn-search {
    width: 41px;
    height: 40px;
    border: none;
    background: #00CCCC;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

.btn-search img {
    width: 18px;
    height: 18px;
    padding-top: 2px;
}

.user-actions {
    display: flex;
    align-items: center;
    color: white;
    width: 100%;
    justify-content: flex-end;
}

.shopping-cart-icon {
    width: 14px;
    height: 14.02px;
    margin-right: 26.17px;
    cursor: pointer;
    transition: transform 0.3s;
}

.shopping-cart-icon:hover {
    transform: scale(1.1);
}

.user-icon {
    width: 11.67px;
    height: 15px;
    margin-right: 13.17px;
}

.login-link, .register-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 14px;
    transition: opacity 0.3s;
    cursor: pointer;
}

.login-link:hover, .register-link:hover {
    opacity: 0.8;
}

.separator {
    color: white;
    margin: 0 4px;
}

.navbar-main {
    background: transparent;
    height: 120px;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-main .wrapper {
    height: 100%;
    width: 100%;
    max-width: 1392px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
}

.navbar-main .row {
    margin: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-main .col-md-2,
.navbar-main .col-md-10,
.navbar-main .col-lg-6 {
    padding: 0 0.5rem;
}

.navbar-main .col-lg-6:first-child {
    padding-left: 0;
}

.navbar-main .col-lg-6:last-child {
    padding-right: 0;
}

.navbar-main.scrolled {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
}

.navbar-main.scrolled .logo {
    content: url('img/logos/logo_blue.png');
}

.navbar-main.scrolled .nav-menu a {
    color: var(--primary-color);
}

.navbar-main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    height: 73px;
    max-height: 73px;
    cursor: pointer;
    object-fit: contain;
    display: block;
}

.sections {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    gap: 35px;
    width: 100%;
}

.sections .item {
    margin-left: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    margin-left: 35px;
}

.nav-menu a,
.item {
    color: white;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 18.5px;
    font-weight: 500;
    transition: color 0.3s;
    cursor: pointer;
    padding: 30px 0;
    display: inline-block;
}

.navbar-main.scrolled .item {
    color: var(--primary-color);
}

.nav-menu a:hover,
.item:hover {
    text-decoration: underline;
    text-decoration-color: white;
    text-decoration-thickness: 3px;
    text-underline-offset: 10px;
}

.navbar-main.scrolled .item:hover {
    text-decoration-color: var(--primary-color);
}

/* Slider Section */
.slider-section {
    margin-top: 197px;
    height: 800px;
    position: relative;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background-color: black;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    left: 0;
    top: 0;
}

.slide.active {
    opacity: 1;
    z-index: 3;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wrapper.absolute {
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    z-index: 10;
}

.slide-content {
    max-width: 50%;
}

.hero-title {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 43px;
    font-weight: bold;
    letter-spacing: normal;
    line-height: 44px;
    margin-bottom: 10px;
}

.hero-title span {
    display: block;
    opacity: 0;
}

.slide.active .hero-title span {
    animation: intro-effect-title 2s forwards;
    animation-delay: 0.5s;
}

@keyframes intro-effect-title {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.hero-subtitle {
    color: white;
    font-size: 18px;
    margin-bottom: 10px;
    opacity: 0;
}

.slide.active .hero-subtitle {
    animation: intro-effect-subtitle 2s forwards;
    animation-delay: 0.8s;
}

@keyframes intro-effect-subtitle {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.primary-button.see-more {
    border: 2px solid #32c8fc;
    background: transparent;
    color: white;
    padding: 12px 40px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    transition: all 0.3s;
    opacity: 0;
}

.slide.active .primary-button.see-more {
    animation: intro-effect-button 2s forwards;
    animation-delay: 1s;
}

@keyframes intro-effect-button {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.primary-button.see-more:hover {
    background: #32c8fc;
    color: var(--primary-color);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-arrow i {
    font-size: 30px;
    color: white;
}

.slider-arrow-left {
    left: 30px;
}

.slider-arrow-right {
    right: 30px;
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* Responsive slider */
@media screen and (max-width: 768px) {
    .slider-section {
        margin-top: 52px;
        height: 500px;
    }

    .slide-content {
        max-width: 88%;
        text-align: center;
        margin: 0 auto;
    }

    .wrapper.absolute {
        bottom: 50px;
    }

    .hero-title {
        font-size: 23px;
        line-height: normal;
    }

    .hero-subtitle {
        display: none;
    }

    .primary-button.see-more {
        max-width: 80%;
        margin-top: 10px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-arrow i {
        font-size: 24px;
    }

    .slider-arrow-left {
        left: 10px;
    }

    .slider-arrow-right {
        right: 10px;
    }
}

@media screen and (max-width: 425px) {
    .slider-section {
        height: 400px;
    }

    .slide-content {
        max-width: 98%;
    }
}

/* Companies Section */
.companies-section {
    background: var(--accent-color);
    padding: 50px 0;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
}

.companies-section .section-title {
    color: var(--text-light);
}

.carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel {
    display: flex;
    gap: 40px;
    animation: scroll 65.5s linear infinite;
    align-items: center;
    width: max-content;
}

.carousel:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.company-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-width: 150px;
}

.company-logo img {
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.services-section .section-title {
    color: var(--primary-color);
    font-size: 54px;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 60px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Indicators Section */
.indicators-section {
    padding: 80px 0;
    background: var(--primary-color);
}

.indicators-section .section-title {
    color: white;
    font-size: 54px;
    margin-bottom: 60px;
}

.indicators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.indicator-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, background 0.3s;
}

.indicator-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.indicator-icon {
    font-size: 50px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.indicator-number {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.indicator-text {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.4;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-section .section-title {
    color: var(--primary-color);
    font-size: 54px;
    margin-bottom: 60px;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-form {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.form-group label {
    position: absolute;
    left: 15px;
    top: -10px;
    background: white;
    padding: 0 5px;
    font-size: 12px;
    color: #666;
    pointer-events: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #00b8b8;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.success-message {
    text-align: center;
    padding: 40px;
    color: var(--primary-color);
}

.success-message h4 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.success-message h3 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--bg-gradient);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.social-links-footer {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links-footer img {
    width: 28px;
    height: 28px;
    cursor: pointer;
    transition: transform 0.3s;
}

.social-links-footer img:hover {
    transform: scale(1.1);
}

.footer-logo {
    max-width: 200px;
    margin-top: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-light);
}

/* Responsive Styles */
@media (max-width: 1040px) {
    .padding-mobile {
        padding: 0 5px;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 52px;
    }

    .navbar-top {
        display: none;
    }

    .navbar-main {
        height: 52px;
        background: var(--bg-gradient);
    }

    .navbar-main .wrapper {
        padding: 0 21px;
    }

    .navbar-main-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
        padding: 0;
    }

    .logo {
        height: 35px;
        max-height: 35px;
        width: 112.29px;
    }

    .sections {
        display: none;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu li {
        margin: 0;
        width: 100%;
    }

    .nav-menu a,
    .item {
        font-size: 16px;
        font-weight: 500;
        padding: 10px;
        display: block;
        text-align: left;
    }

    .slider-section {
        margin-top: 52px;
        height: 500px;
    }

    .slide-title {
        font-size: 28px;
    }

    .slide-subtitle {
        font-size: 18px;
    }

    .slide-description {
        font-size: 14px;
    }

    .slide-content {
        bottom: 50px;
    }

    .services-section .section-title,
    .indicators-section .section-title,
    .contact-section .section-title {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-arrow i {
        font-size: 24px;
    }

    .slider-arrow-left {
        left: 10px;
    }

    .slider-arrow-right {
        right: 10px;
    }

    .services-grid,
    .indicators-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media only screen and (min-width: 64rem) {
    .navbar {
        height: 197px;
    }

    .slider-section {
        margin-top: 70px;
    }
}

/* Loading Spinner */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: var(--accent-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
