/* ESTILOS GENERALES */
:root {
    /* Nueva paleta basada en el logo con mayor énfasis en el azul */
    --primary-color: #0E4B80;     /* Azul principal corporativo */
    --primary-dark: #093760;      /* Azul oscuro para contraste */
    --primary-light: #2A78B7;     /* Azul más claro para variaciones */
    --secondary-color: #FF8500;   /* Naranja energético */
    --accent-color: #0E4B80;      /* Cambiado a azul para reforzar identidad */
    --dark-color: #1F2937;        /* Gris oscuro para textos */
    --light-color: #F9FAFB;       /* Blanco hueso para fondos */
    --gray-color: #6B7280;        /* Gris medio para textos secundarios */
    --section-bg: #EBF5FF;        /* Azul muy claro para secciones */
    --success-color: #10B981;     /* Verde para elementos positivos */
    --warning-color: #F59E0B;     /* Ámbar para advertencias */
    --font-primary: 'Roboto', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-primary);
    color: #444444;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
}

.section-bg {
    background-color: var(--section-bg);
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

/* ESTILOS ESPECÍFICOS PARA LA NUEVA ESTRUCTURA */

/* Problema box en hero */
.problems-box {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px 30px;
    margin-bottom: 30px;
}

.problems-box h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.problems-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problems-box ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.problems-box ul li i {
    color: var(--secondary-color);
    margin-right: 12px;
    font-size: 20px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    position: relative;
    color: var(--dark-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-light));
    border-radius: 2px;
    bottom: 0;
    left: calc(50% - 40px);
}

.section-title p {
    margin-bottom: 0;
}

section {
    padding: 60px 0;
    overflow: hidden;
}

/* NAVBAR */
.navbar {
    padding: 15px 0;
    transition: all 0.3s;
    background-color: rgba(14, 75, 128, 0.95);
    box-shadow: 0 2px 10px rgba(9, 55, 96, 0.2);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-brand {
    font-size: 30px;
    margin: 0;
    padding: 5px 15px 5px 0;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.logo {
    height: 85px;
    width: auto;
    margin-right: 10px;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 2px rgba(255,255,255,0.3));
}

.navbar .navbar-nav .nav-link {
    padding: 10px 0 10px 30px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

.navbar .navbar-nav .nav-link:hover, 
.navbar .navbar-nav .active > .nav-link {
    color: var(--secondary-color);
}

.btn-login, .btn-register {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-login {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.btn-register {
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: #fff;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-register:hover {
    background: #ff9a30;
    border-color: #ff9a30;
    color: #fff;
}

.btn-login-footer, .btn-register-footer {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-login-footer {
    background: transparent;
    border: 1px solid var(--primary-light);
    color: #fff;
}

.btn-register-footer {
    background: var(--primary-light);
    border: 1px solid var(--primary-light);
    color: #fff;
}

.btn-login-footer:hover, .btn-register-footer:hover {
    transform: translateY(-2px);
    color: #fff;
}

/* HERO SECTION */
#hero {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #0E4B80, #00a8e8);
    background-size: cover;
    position: relative;
    padding: 120px 0 60px 0;
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
}

#hero .container {
    padding: 0;
}

#hero h1 {
    margin: 0;
    top: 10px;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

#hero p {
    color: #eee;
    margin-bottom: 30px;
    font-size: 18px;
}

#hero .btn-get-started {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-right: 15px;
    color: #fff;
    background: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(255, 133, 0, 0.4);
}

#hero .btn-get-started:hover {
    background: #FF9A2E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 133, 0, 0.6);
}

#hero .btn-services {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    color: #fff;
    background: var(--primary-light);
    box-shadow: 0 5px 15px rgba(14, 75, 128, 0.4);
    border: 2px solid var(--primary-light);
}

#hero .btn-services:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(14, 75, 128, 0.5);
}

#hero .hero-img {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero .hero-img-container {
    position: relative;
    display: inline-block;
}

#hero .hero-img img {
    max-height: 400px;
    width: auto;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    display: block;
}

#hero .hero-img-container:before {
    content: '';
    position: absolute;
    width: 460px;
    height: 460px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#hero .hero-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

#hero .hero-icons i {
    position: absolute;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

#hero .icon-1 {
    top: 25%;
    left: 15%;
}

#hero .icon-2 {
    top: 15%;
    right: 20%;
}

#hero .icon-3 {
    bottom: 30%;
    left: 10%;
}

#hero .icon-4 {
    bottom: 15%;
    right: 15%;
}

#hero .icon-5 {
    top: 50%;
    right: 10%;
}

#hero .icon-6 {
    bottom: 40%;
    right: 30%;
}

/* SERVICIOS */
.services .service-box {
    box-shadow: 0 10px 30px rgba(31, 41, 55, 0.07);
    height: 100%;
    padding: 60px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border-radius: 16px;
    background: #fff;
    border-bottom: 4px solid transparent;
}

.services .service-box .icon {
    font-size: 36px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    position: relative;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(14, 75, 128, 0.25);
}

.services .service-box h3 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 22px;
}

.services .service-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(14, 75, 128, 0.15);
    border-bottom: 4px solid var(--primary-color);
}

/* NOSOTROS */
.about h3 {
    font-weight: 600;
    font-size: 26px;
    color: var(--primary-color);
}

.about ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.about ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 15px;
}

.about ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: var(--secondary-color);
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .btn-learn-more {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    transition: all 0.4s ease;
    line-height: 1;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-top: 25px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about .btn-learn-more:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.4s ease;
    z-index: -1;
}

.about .btn-learn-more:hover {
    color: #fff;
}

.about .btn-learn-more:hover:before {
    width: 100%;
}

/* Estilos para la sección de solución */
.solution {
    padding: 80px 0;
    background-color: #fff;
}

.stats-counter {
    margin-top: 40px;
}

.stats-counter .stat-box {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(14, 75, 128, 0.1);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--primary-color);
}

.stats-counter .stat-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.stats-counter .stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(14, 75, 128, 0.2);
}

.stats-counter .stat-box:hover:before {
    width: 100%;
    opacity: 0.1;
}

.stats-counter .stat-box .icon {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stats-counter .stat-box .counter {
    font-size: 48px;
    display: block;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: var(--font-secondary);
    margin-bottom: 10px;
}

.stats-counter .stat-box .puesto {
    font-size: 48px;
    display: block;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: var(--font-secondary);
    margin-bottom: 10px;
}

.stats-counter .stat-box p {
    font-size: 15px;
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Beneficios */
.benefits-box {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(14, 75, 128, 0.08);
    transition: all 0.3s ease;
}

.benefits-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(14, 75, 128, 0.15);
}

.benefits-box.provider {
    border-left: 5px solid var(--primary-color);
}

.benefits-box.commerce {
    border-left: 5px solid var(--secondary-color);
}

.benefits-box h3 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    color: var(--primary-color);
    font-weight: 700;
}

.benefits-box.commerce h3 {
    color: var(--secondary-color);
}

.benefits-box ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.benefits-box ul li {
    padding: 8px 0;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 30px; /* Espacio para el icono */
}

.benefits-box ul li i {
    color: var(--primary-color);
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 9px;
}

.benefits-box.commerce ul li i {
    color: var(--secondary-color);
}

.value-proposition {
    font-size: 18px;
    color: var(--dark-color);
    max-width: 800px;
    margin: 0 auto 25px;
    line-height: 1.6;
    font-weight: 500;
    text-align: center;
}

/* Cobertura */
.coverage .map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(14, 75, 128, 0.15);
    transition: all 0.3s ease;
    background: #fff;
    padding: 10px;
    height: 100%;
}

.coverage .map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(14, 75, 128, 0.25);
}

.coverage-info {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(14, 75, 128, 0.08);
    transition: all 0.3s ease;
}

.coverage-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(14, 75, 128, 0.15);
}

.transport-coverage {
    background: linear-gradient(to right, #ffffff, #f0f7ff);
    border-left: 5px solid var(--primary-color);
}

.international-coverage {
    background: linear-gradient(to right, #ffffff, #fff7f0);
    border-left: 5px solid var(--secondary-color);
}

.coverage-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.coverage-info p {
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--dark-color);
}

.coverage-info .international {
    margin-top: 20px;
    margin-bottom: 20px;
}

.distribution-centers-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
    gap: 25px;
}

.center-stat {
    text-align: center;
    min-width: 140px;
}

.center-stat i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.center-stat .number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    display: block;
    margin-bottom: 5px;
}

.center-stat p {
    font-size: 14px;
    margin-bottom: 0;
    color: var(--gray-color);
}

.distribution-image {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(14, 75, 128, 0.1);
    text-align: center;
}

.distribution-image img {
    max-height: 280px;
    border-radius: 6px;
}

.coverage-info .country {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.coverage-info .country i {
    margin-right: 10px;
    color: var(--success-color);
}

.coverage-info .country.coming-soon i {
    color: var(--warning-color);
}

.international-buttons {
    text-align: center;
}

.btn-coverage {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
    margin: 0 5px 10px 5px;
    border: none;
}

.international-coverage .btn-coverage {
    background: var(--secondary-color);
}

.btn-coverage:hover {
    background: var(--primary-light);
    color: #fff;
    transform: translateY(-3px);
}

/* Estilos para modal de mapas y precios */
.coverage-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.coverage-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    width: 80%;
    max-width: 900px;
    position: relative;
    transition: all 0.3s ease;
    animation: modalFadeIn 0.4s;
}

.coverage-modal-content img {
    width: 100%;
    border-radius: 5px;
}

.close-modal {
    color: var(--dark-color);
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1060;
}

.close-modal:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
}

@keyframes modalFadeIn {
    from {transform: translateY(-50px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
}

/* CLIENTES */
.clients {
    padding: 15px 0;
    text-align: center;
}

.clients .clients-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 15px;
}

.clients .client-logo {
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e6e6e6;
    margin: 10px;
    border-radius: 8px;
    transition: 0.3s;
    height: 100px;
    filter: grayscale(100);
    background-color: #fff;
}

.clients .client-logo:hover {
    border-color: var(--secondary-color);
    filter: none;
    transform: scale(1.1);
}

.integrations .integration-logo {
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e6e6e6;
    margin: 10px;
    border-radius: 8px;
    transition: 0.3s;
    height: 100px;
    background-color: #fff;
}

.integrations .integration-logo:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(14, 75, 128, 0.15);
}

/* CONTACTO */
.contact .info {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.contact .info i {
    font-size: 20px;
    color: #ffffff;
    float: left;
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contact .info p {
    padding: 0 0 10px 60px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--gray-color);
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
    background: var(--primary-light);
    color: #fff;
    transform: scale(1.1);
}

.contact .php-email-form {
    width: 100%;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 5px;
    box-shadow: none;
    font-size: 14px;
    border: 1px solid #ced4da;
    padding: 10px 15px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--primary-color);
}

.contact .php-email-form button[type=submit] {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    border: 0;
    padding: 14px 35px;
    color: #fff;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(14, 75, 128, 0.3);
}

.contact .php-email-form button[type=submit]:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 50%, var(--primary-dark) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(14, 75, 128, 0.4);
}

/* FOOTER */
#footer {
    font-size: 14px;
    background-color: var(--dark-color);
    color: #fff;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 60%, var(--primary-light) 100%);
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
    font-size: 24px;
    margin: 0 0 15px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
    color: #fff;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: #d0d0d0;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

#footer .footer-top h4::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
    bottom: 0;
    left: 0;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 10px;
    font-size: 18px;
    color: var(--secondary-color);
}

#footer .footer-top .footer-links ul a {
    color: #d0d0d0;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: var(--secondary-color);
}

#footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 5px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: var(--secondary-color);
    color: #fff;
    transition: 0.3s;
    border-radius: 0 5px 5px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
    background: #ff8a3d;
}

#footer .social-links {
    margin-top: 10px;
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    box-shadow: 0 3px 10px rgba(14, 75, 128, 0.2);
}

#footer .social-links a:hover {
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
}

#footer .copyright {
    padding-top: 10px;
}

/* BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--secondary-color);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/* BOTÓN DE WHATSAPP */
.btn-wpp {
    display: inline-block;
    background: #25D366;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.btn-wpp i {
    margin-right: 8px;
    font-size: 20px;
    vertical-align: middle;
}

.btn-wpp:hover {
    background: #128C7E;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.contact-cta {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

.contact-cta h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 28px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    #hero {
        min-height: auto;
        text-align: center;
        padding-top: 140px;
        padding-bottom: 80px;
    }
    
    #hero .hero-img {
        margin-top: 40px;
        margin-bottom: 40px;
        min-height: 450px;
    }
    
    #hero .hero-img-container {
        margin: auto;
    }
    
    .logo {
        height: 60px;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
    
    #hero p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .navbar .navbar-nav .nav-link {
        padding: 10px 15px;
    }
    
    .services .service-box {
        margin-bottom: 20px;
    }
    
    .logo {
        height: 40px;
    }
    
    #hero {
        padding-top: 130px;
    }
}

@media (max-width: 575px) {
    .section-title h2 {
        font-size: 28px;
    }
    
    .logo {
        height: 35px;
    }
    
    #hero {
        padding-top: 120px;
    }
    
    .navbar-brand {
        margin-right: 0;
    }
}
