.navbar-brand .pros {
    font-size: 0.4em;
    vertical-align: super;
    margin-left: 2px;
    font-weight: normal;
    color: #123524;
}


.brand-logo {
    width: 450px;
    height: 120px;
}

.project-gallery-extra {
    display: none;
}

.fancybox-thumbs-strip {
    display: flex;
    gap: 6px;
    justify-content: center;
    padding: 8px;
    background: rgba(32, 32, 32, 0.35);
    overflow-x: auto;
}

.fancybox-thumb {
    flex: 0 0 58px;
    width: 58px;
    height: 44px;
    padding: 0;
    border: 2px solid transparent;
    background: transparent;
    cursor: pointer;
    opacity: .65;
}

.accordion_header {
    padding-left: 22px;
}

.accordion_header:before {
    content: "\f054";
    color: #fead6a;
    font-family: "Font Awesome 6 Free";
    font-size: 11px;
    font-weight: 900;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.fancybox-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fancybox-thumb:hover,
.fancybox-thumb.is-active {
    border-color: #cb9501;
    opacity: 1;
}

.banner2-text-color {
    color: white;
}

.trusted-brands {
    background: #f7f7f5;
    line-height: 0;
    text-align: center;
}

.trusted-brands img {
    display: block;
    height: auto;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
}


/* ==========================================================
   FORMULARIO FLOTANTE FIJO - ESQUINA SUPERIOR DERECHA
   ========================================================== */

/* ----- BOTÓN TOGGLE - SUPERIOR DERECHA ----- */
.quote-toggle-btn {
    display: none;
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 10000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #cb9501;
    color: #ffffff;
    border: none;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.quote-toggle-btn:has(+ .hero-quote-form:not(.open)) {
    animation: button-shake 5s ease-in-out infinite;
}

.quote-toggle-btn:hover {
    transform: scale(1.05);
    background: #d68910;
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5);
}

.quote-toggle-btn .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e5252a;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 1.1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.22);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes button-shake {

    0%,
    10%,
    100% {
        transform: translateX(0) rotate(0);
    }

    2% {
        transform: translateX(-3px) rotate(-3deg);
    }

    5% {
        transform: translateX(3px) rotate(3deg);
    }

    8% {
        transform: translateX(-2px) rotate(-2deg);
    }
}

/* ----- FORMULARIO FLOTANTE ----- */
.hero-quote-form {
    position: fixed;
    top: 140px;
    right: 20px;
    z-index: 9999;
    width: 320px;
    max-width: calc(100% - 40px);
    background: #ffffff;
    border-radius: 12px;
    padding: 18px 20px 22px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    border: 1px solid #e0e0e0;
    color: #333333;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
    font-family: Arial, Helvetica, sans-serif;
    /*display: none;*/
    display: block;
    animation: slideDown 0.3s ease;
}

.hero-quote-form.open {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----- SCROLL PERSONALIZADO ----- */
.hero-quote-form::-webkit-scrollbar {
    width: 4px;
}

.hero-quote-form::-webkit-scrollbar-track {
    background: transparent;
}

.hero-quote-form::-webkit-scrollbar-thumb {
    background: #cccccc;
    border-radius: 4px;
}

/* ----- TÍTULO ----- */
.hero-quote-form .quote-title {
    font-size: 17px;
    font-weight: 700;
    color: #1f2b3a;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.3;
}

.hero-quote-form .quote-title i {
    color: #cb9501;
    margin-right: 6px;
}

/* ----- BOTÓN CERRAR ----- */
.quote-close-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #999999;
    cursor: pointer;
    float: right;
    padding: 0 4px;
    transition: color 0.2s;
}

.quote-close-btn:hover {
    color: #333333;
}

/* ----- INDICADOR DE PASO ----- */
.quote-step-label {
    font-size: 13px;
    font-weight: 500;
    color: #8d9aa8;
    margin-bottom: 4px;
    text-align: center;
    clear: both;
}

/* ----- BARRA DE PROGRESO ----- */
.quote-progress {
    height: 6px;
    margin-bottom: 14px;
    overflow: hidden;
    background: #e9e9e9;
    border-radius: 6px;
}

.quote-progress-bar {
    width: 50%;
    height: 100%;
    background: #cb9501;
    border-radius: 6px;
    transition: width 0.3s ease;
}

/* ----- PASOS DEL FORMULARIO ----- */
.quote-form-step {
    display: none;
}

.quote-form-step.active {
    display: block;
}

/* ----- CAMPOS CON ICONOS ----- */
.quote-field-icon {
    position: relative;
    margin-bottom: 8px;
}

.quote-field-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0b0c0;
    font-size: 14px;
    pointer-events: none;
    z-index: 2;
}

.quote-field-icon.textarea-icon i {
    top: 18px;
    transform: none;
}

/* ----- CAMPOS DE ENTRADA ----- */
.quote-field {
    width: 100%;
    height: 42px;
    padding: 0 12px 0 36px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    background: #ffffff;
    color: #444444;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

textarea.quote-field {
    height: 70px;
    padding-top: 10px;
    padding-bottom: 10px;
    resize: vertical;
}

.quote-field:focus {
    border-color: #cb9501;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.12);
}

.quote-field.error {
    border-color: #d93025;
    box-shadow: 0 0 0 3px rgba(217, 48, 37, 0.08);
}

.quote-field::placeholder {
    color: #999999;
}

select.quote-field {
    appearance: auto;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    padding-right: 12px;
    cursor: pointer;
}

/* ----- CONSENTIMIENTO SMS ----- */
.quote-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 10px 0 14px;
    font-size: 10.5px;
    line-height: 1.35;
    color: #4a5a6a;
}

.quote-consent input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    margin-top: 2px;
    accent-color: #cb9501;
    cursor: pointer;
}

.quote-consent label {
    font-weight: 400;
    cursor: pointer;
}

.quote-consent a {
    color: #1f2b3a;
    font-weight: 500;
    text-decoration: underline;
}

/* ----- BOTONES ----- */
.quote-btn {
    display: block;
    width: 100%;
    min-height: 42px;
    border: none;
    border-radius: 30px;
    background: #cb9501;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    letter-spacing: 0.2px;
    padding: 10px 0;
    font-family: Arial, Helvetica, sans-serif;
}

.quote-btn:hover {
    background: #d68910;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

.quote-btn.secondary {
    background: #1f2b3a;
    margin-bottom: 8px;
}

.quote-btn.secondary:hover {
    background: #2c3e50;
    box-shadow: 0 4px 12px rgba(31, 43, 58, 0.25);
}

.quote-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ----- MENSAJES DE ERROR ----- */
.quote-error-msg {
    margin: -4px 0 8px;
    color: #d93025;
    font-size: 11px;
    display: none;
}

/* ----- MENSAJES DE ÉXITO / ERROR SERVIDOR ----- */
.quote-success {
    padding: 14px;
    margin-top: 12px;
    border-radius: 8px;
    background: #edf8ee;
    color: #246b2a;
    border: 1px solid #bfe2c2;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

.quote-server-error {
    padding: 10px 14px;
    margin-bottom: 12px;
    border-radius: 7px;
    background: #fff1f0;
    color: #b42318;
    border: 1px solid #f2b8b5;
    font-size: 12px;
    line-height: 1.4;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

/* ----- TABLETS ----- */
@media (max-width: 991px) {
    .quote-toggle-btn {
        top: 70px;
        right: 10px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .hero-quote-form {
        top: 125px;
        right: 10px;
        width: 280px;
        padding: 14px 16px 18px;
        max-height: calc(100vh - 145px);
    }
}

/* ----- MÓVILES ----- */
@media (max-width: 600px) {
    .quote-toggle-btn {
        display: flex !important;
        top: 60px;
        right: 10px;
        width: 44px;
        height: 44px;
        font-size: 17px;
    }

    .quote-toggle-btn .badge {
        width: 18px;
        height: 18px;
        font-size: 9px;
        top: -4px;
        right: -4px;
    }

    .hero-quote-form {
        position: fixed;
        top: 110px;
        right: 10px;
        left: 10px;
        width: auto;
        max-width: none;
        border-radius: 10px;
        padding: 12px 14px 16px;
        max-height: calc(100vh - 130px);
        display: none;
    }

    .hero-quote-form .quote-title {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .quote-field {
        height: 38px;
        font-size: 13px;
        padding: 0 10px 0 32px;
    }

    .quote-field-icon i {
        font-size: 13px;
        left: 10px;
    }

    textarea.quote-field {
        height: 60px;
    }

    .quote-btn {
        min-height: 38px;
        font-size: 14px;
        padding: 8px 0;
    }

    .quote-consent {
        font-size: 9.5px;
        margin: 8px 0 12px;
    }

    .quote-consent input[type="checkbox"] {
        width: 14px;
        height: 14px;
        flex: 0 0 14px;
    }
}

/* ----- DESKTOP (mostrar botón) ----- */
@media (min-width: 601px) {
    .quote-toggle-btn {
        display: flex !important;
    }
}

/* ==========================================================
   UTILIDADES ADICIONALES
========================================================== */

/* Limpiar floats */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}


.banner .p__mod strong a {
    position: relative;
    display: inline;
    color: inherit;
    text-decoration: none;
    z-index: 1;
    transition: color 0.3s ease;
    padding: 5px 10px;
}

/* Barra animada */
.banner .p__mod strong a::before {
    content: "";
    position: absolute;
    top: -2px;
    bottom: -2px;
    right: 0;
    width: 0;
    background: #cb9501;
    z-index: -1;
    transition: width 0.4s ease;
    border-radius: 10px;
}

/* Hover */
.banner .p__mod strong a:hover::before {
    width: 100%;
}

.banner .p__mod strong a:hover {
    color: #fff;
}

/* Carousel Banner Styles */
.carousel-banner-title {
    font-size: 32px;
}

.carousel-banner-description {
    font-size: 14px;
}

.carousel-banner-btn {
    font-size: 13px;
    padding: 8px 18px;
}



/* Why Choose Section */
.why-choose-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title span {
    color: #cb9501;
    position: relative;
}

.section-title span::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #cb9501;
    margin: 10px auto 0;
}

.features-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 4px solid transparent;
    margin-bottom: 30px;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-bottom-color: #cb9501;
}

.feature-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: #123524;
    color: #fff;
    font-size: 32px;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background: #333;
    transform: rotate(10deg) scale(1.05);
}

.feature-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.feature-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

    .feature-box {
        padding: 25px 20px;
    }

    .feature-icon {
        width: 65px;
        height: 65px;
        line-height: 65px;
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 22px;
    }

    .feature-box {
        padding: 20px 15px;
    }
}

/* Proven Process Section */
.proven-process {
    padding: 70px 0 50px;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title span {
    color: #cb9501;
    position: relative;
}

.section-title span::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #cb9501;
    margin: 12px auto 0;
}

/* Process Cards */
.process-steps {
    margin-bottom: 30px;
}

.process-card {
    background: #f8f9fa;
    padding: 35px 25px 30px;
    text-align: center;
    border-radius: 12px;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid #e9ecef;
    height: 100%;
    margin-bottom: 30px;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #cb9501;
}

/* Step Number */
.step-number {
    position: absolute;
    top: -5px;
    right: 15px;
    font-size: 60px;
    font-weight: 900;
    color: rgba(230, 126, 34, 0.08);
    line-height: 1;
    font-family: 'Arial Black', sans-serif;
}

.process-card:hover .step-number {
    color: rgba(230, 126, 34, 0.15);
}

/* Step Icon */
.step-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    /*background: linear-gradient(135deg, #cb9501, #d35400);*/
    background: linear-gradient(135deg, #2e875c, #123524);
    color: #fff;
    font-size: 30px;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
    display: inline-block;
}

.process-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.3);
}

.process-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.process-card p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Call to Action */
.cta-row {
    margin-top: 20px;
}

.cta-box {
    background: #123524;
    padding: 50px 30px;
    text-align: center;
    /*border-radius: 12px;*/
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.08) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cta-box h3 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.btn-cta {
    display: inline-block;
    background: #cb9501;
    color: #fff;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: 2px solid #cb9501;
}

.btn-cta:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
    .section-title {
        font-size: 32px;
    }

    .process-card {
        padding: 30px 20px;
    }

    .cta-box h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 26px;
    }

    .step-number {
        font-size: 45px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 24px;
    }

    .cta-box {
        padding: 35px 20px;
    }

    .cta-box h3 {
        font-size: 24px;
    }

    .cta-box p {
        font-size: 16px;
    }

    .btn-cta {
        padding: 14px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 22px;
    }

    .process-card {
        padding: 25px 15px;
    }

    .step-number {
        font-size: 35px;
        top: 0;
        right: 10px;
    }

    .cta-box h3 {
        font-size: 20px;
    }

    .btn-cta {
        padding: 12px 25px;
        font-size: 12px;
        width: 100%;
    }
}


.services-content {
    padding-right: 30px;
}

.services-content-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    columns: 2;
    font-size: 14px;
    color: #333;
}

.services-list li {
    padding: 4px 0;
    padding-left: 20px;
    position: relative;
    font-weight: 500;
}

.services-list li span {
    position: absolute;
    left: 0;
    color: #123524;
}

.services-note {
    font-size: 13px;
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
}

.services-estimate-btn {
    display: inline-block;
    background-color: #123524;
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.services-estimate-btn:hover,
.services-estimate-btn:focus,
.services-estimate-btn:active {
    color: #fff !important;
    background-color: #1b4d34;
    text-decoration: none;
}



/* =========================================================
   SERVICES OVERVIEW CAROUSEL
   ========================================================= */
.services-overview {
    position: relative;
}

/* Contenedor principal del carrusel */
.services-carousel {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

/* Área donde se ven las tarjetas */
.services-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Contenedor que se desplaza */
.services-track {
    display: flex;
    width: 100%;
    transition: transform 0.7s ease-in-out;
    will-change: transform;
}

/* Cada tarjeta */
.service-slide {
    flex: 0 0 33.333333%;
    width: 33.333333%;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Tarjeta */
.service-card {
    text-align: left;
    height: 100%;
}

/* Imagen */
.service-card img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* Título */
.service-card h4 {
    margin-top: 0;
    margin-bottom: 15px;
}

/* Enlace del título */
.service-card h4 a {
    color: #123524;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-card h4 a:hover {
    color: #f39c12;
    text-decoration: none;
}

/* Descripción */
.service-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}


/* =========================================================
   FLECHAS
   ========================================================= */
.services-arrow {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background-color: #123524;
    color: #ffffff;
    font-size: 25px;
    line-height: 42px;
    padding: 0;
    margin: 0;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

/* Flecha izquierda */
.services-prev {
    left: -20px;
}

/* Flecha derecha */
.services-next {
    right: -20px;
}

/* Hover de las flechas */
.services-arrow:hover {
    background-color: #f39c12;
    color: #ffffff;
}

/* Quitar estilos del navegador */
.services-arrow:focus {
    outline: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .service-slide {
        flex: 0 0 50%;
        width: 50%;
    }

    .services-prev {
        left: -15px;
    }

    .services-next {
        right: -15px;
    }

}


/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 767px) {

    .service-slide {
        flex: 0 0 100%;
        width: 100%;
    }

    .services-arrow {
        width: 38px;
        height: 38px;
        line-height: 38px;
        font-size: 22px;
    }

    .services-prev {
        left: 5px;
    }

    .services-next {
        right: 5px;
    }

}

/* ===== SECCIÓN DE OFERTA ESPECIAL - ESTILO TICKET ===== */

.special-offer-section {
    padding: 60px 0;
    /* Separación del banner superior */
    background-color: transparent;
}

/* Contenedor principal - ESTILO TICKET */
.offer-wrapper {
    background: #ffffff;
    border: 3px dashed #d4a843;
    /* Línea punteada dorada */
    border-radius: 30px;
    padding: 45px 40px;
    /* Padding interno para separar el contenido */
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
    /* Sombra para resaltar el ticket */
    transition: all 0.3s ease;
    margin: 0 15px;
    /* Separación lateral */
}

/* Efecto de "esquinas recortadas" simulando ticket */
.offer-wrapper::before,
.offer-wrapper::after {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border-radius: 50%;
    border: 3px dashed #d4a843;
    z-index: 1;
}

.offer-wrapper::before {
    top: -18px;
    left: 50px;
    border-bottom: none;
    border-right: none;
}

.offer-wrapper::after {
    bottom: -18px;
    right: 50px;
    border-top: none;
    border-left: none;
}

/* Imagen del badge */
.offer-image-wrapper {
    flex: 0 0 auto;
    margin-right: 25px;
}

.offer-badge {
    max-width: 150px;
    height: auto;
}

/* Contenido de texto */
.offer-content {
    flex: 1 1 auto;
    padding-right: 20px;
}

.offer-title {
    font-size: 4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.offer-title .highlight {
    color: #d4a843;
}

.offer-description {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 8px;
    font-weight: 500;

}

.offer-disclaimer {
    font-size: 1rem;
    color: #888;
    font-style: italic;
    margin-bottom: 0;
}

/* Botón */
.offer-button-wrapper {
    flex: 0 0 auto;
    margin-left: 15px;
}

.btn-offer {
    background-color: #d4a843;
    color: #fff;
    padding: 14px 30px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    white-space: nowrap;
    border: 2px solid #123524 !important;
    animation: singlePulse 1.5s ease-in-out infinite;
    animation-delay: 0s;
}

.btn-offer:hover {
    background-color: #b8922f;
    color: #fff;
    transform: scale(1.03);
    text-decoration: none;
}


@keyframes singlePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
        box-shadow: 0 0 20px rgba(212, 168, 67, 0.6);
    }

    100% {
        transform: scale(1);
    }
}

/* ===== RESPONSIVE ===== */

/* Tablets */
@media (max-width: 992px) {
    .offer-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
        margin: 0 10px;
    }

    .offer-image-wrapper {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .offer-content {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .offer-button-wrapper {
        margin-left: 0;
        width: 100%;
    }

    .btn-offer {
        width: 100%;
        text-align: center;
        white-space: normal;
    }

    /* Ocultar los círculos en tablet para no romper el diseño */
    .offer-wrapper::before,
    .offer-wrapper::after {
        display: none;
    }
}

/* Móviles */
@media (max-width: 576px) {
    .special-offer-section {
        padding: 40px 0;
    }

    .offer-wrapper {
        border-radius: 20px;
        padding: 25px 15px;
        margin: 0 5px;
        border-width: 2px;
        /* Línea más delgada en móvil */
    }

    .offer-title {
        font-size: 1.5rem;
    }

    .offer-badge {
        max-width: 70px;
    }

    .btn-offer {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
}

/*.offer-highlight {
    font-weight: 700;
}*/

/* =========================================================
   NUEVOS ELEMENTOS PARA NAVEGACIÓN
   (No afecta el diseño original de los thumbs)
   ========================================================= */

.gallery-carousel {
    position: relative;
}

.gallery-carousel-wrapper {
    width: 100%;
}

.gallery-grid-container {
    overflow: hidden;
    position: relative;
}

/* Tu grid original se mantiene intacto */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-project {
    margin-bottom: 30px;
}

/* =========================================================
   FLECHAS
   ========================================================= */

.gallery-nav {
    position: absolute;
    top: 50%;
    width: 48px;
    height: 48px;
    border: 2px solid #123524;
    border-radius: 50%;
    background: #fff;
    color: #123524;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transform: translateY(-50%);
}

.gallery-nav-prev {
    left: -58px;
}

.gallery-nav-next {
    right: -58px;
}

.gallery-nav:hover:not(:disabled) {
    background: #123524;
    color: #fff;
}

.gallery-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: #ccc;
    color: #ccc;
}

.gallery-nav i {
    pointer-events: none;
}

@media (max-width: 767px) {
    .gallery-nav-prev {
        left: 5px;
    }

    .gallery-nav-next {
        right: 5px;
    }
}

/* =========================================================
   INDICADOR DE PÁGINA
   ========================================================= */

.gallery-pagination-indicator {
    text-align: center;
    margin-top: 20px;
    font-size: 15px;
    color: #888;
    letter-spacing: 0.5px;
}

.gallery-pagination-indicator span {
    display: inline-block;
}

.gallery-page-current {
    font-weight: 700;
    color: #123524;
}

.gallery-page-separator {
    margin: 0 5px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 767px) {
    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .gallery-carousel-wrapper {
        gap: 8px;
        padding: 0 5px;
    }
}

@media (max-width: 480px) {
    .gallery-nav {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
}

/* =========================================================
   LAST ADDED (opcional)
   ========================================================= */

.last-added-section {
    background: #f6f6f6;
    padding: 40px 0;
    margin-top: 30px;
}

.last-added-section .thumb img {
    height: 250px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .last-added-section .thumb img {
        height: 200px;
    }
}

/* Estilo completo y profesional */
.before-after-labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.label-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 30px 15px 25px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.label-wrapper:hover {
    transform: scale(1.05);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
}

/* Estilo ANTES */
.before-wrapper {
    border-left: 4px solid #ff6b6b;
}

.before-wrapper .label-icon {
    color: #ff6b6b;
    font-size: 28px;
    font-weight: 300;
}

.before-wrapper .label-text {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.before-wrapper .label-line {
    width: 30px;
    height: 2px;
    background: linear-gradient(to right, #ff6b6b, transparent);
}

/* Estilo DESPUÉS */
.after-wrapper {
    border-right: 4px solid #51cf66;
}

.after-wrapper .label-icon {
    color: #51cf66;
    font-size: 28px;
    font-weight: 300;
}

.after-wrapper .label-text {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.after-wrapper .label-line {
    width: 30px;
    height: 2px;
    background: linear-gradient(to left, #51cf66, transparent);
}

/* Responsive */
@media (max-width: 768px) {
    .label-wrapper {
        padding: 10px 20px 10px 15px;
        gap: 10px;
    }

    .label-wrapper .label-text {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .label-wrapper .label-icon {
        font-size: 20px;
    }

    .label-wrapper .label-line {
        width: 20px;
    }
}

@media (max-width: 480px) {
    .label-wrapper {
        padding: 8px 15px 8px 12px;
        gap: 8px;
    }

    .label-wrapper .label-text {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .label-wrapper .label-icon {
        font-size: 14px;
    }

    .label-wrapper .label-line {
        width: 12px;
    }
}

/* Animación de entrada */
.label-wrapper {
    animation: slideIn 0.8s ease forwards;
    opacity: 0;
}

.before-wrapper {
    animation-delay: 0.2s;
}

.after-wrapper {
    animation-delay: 0.5s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.map .contacts-block a[href^="callto:#"] {
    font-size: 35px;
    font-weight: 800;
}

.map .contacts-block a[href^="tel:"],
.map .contacts-block a[href^="callto:"] {
    color: #ffffff;
    font-size: 35px;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.testimonial-stars .fa-star {
    color: #f5c518;
}

.testimonial-link {
    background-color: #f5f5f5;
    color: #ff6b35;
    font-weight: bold;
    padding: 6px 15px;
    border-radius: 5px;
    border-left: 4px solid #ff6b35;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.testimonial-link:hover {
    background-color: #ff6b35;
    color: #ffffff;
    border-left-color: #e0552a;
    text-decoration: none;
}


/* Estilos CSS para el formulario de contact.php */
/* Header */
.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h3 {
    font-size: 40px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-header h3 span {
    color: #d4a843;
}

.form-subtitle {
    color: #7f8c8d;
    font-size: 15px;
}

/* Form Grid */
.modern-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 36px 40px;
    background: #ffffff;
    border: 1px solid rgba(44, 62, 80, 0.08);
    border-radius: 10px;
    box-shadow: 0 14px 35px rgba(44, 62, 80, 0.14);
    box-sizing: border-box;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 5px;
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 14px;
    color: #34495e;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.required {
    color: #e74c3c;
    font-weight: 700;
    margin-left: 2px;
}

/* Input Wrapper */
.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #95a5a6;
    font-size: 16px;
    pointer-events: none;
    transition: color 0.3s ease;
    z-index: 2;
}

.textarea-icon {
    top: 18px;
    transform: none;
}

/* Inputs and Selects */
.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    font-size: 15px;
    border: 2px solid #e0e6ed;
    border-radius: 8px;
    background: #ffffff;
    transition: all 0.3s ease;
    font-family: inherit;
    color: #2c3e50;
    outline: none;
}

.input-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 40px;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2395a5a6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
}

.input-wrapper select:focus {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23007bff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

.input-wrapper textarea {
    padding-top: 15px;
    resize: vertical;
    min-height: 120px;
}

/* Focus States */
.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    border-color: #123524;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

.input-wrapper input:focus+.input-icon,
.input-wrapper select:focus+.input-icon,
.input-wrapper textarea:focus+.input-icon {
    color: #123524;
}

/* Error States */
.input-wrapper.error input,
.input-wrapper.error select,
.input-wrapper.error textarea {
    border-color: #e74c3c;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.08);
}

.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 4px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

.input-wrapper.error .error-message {
    opacity: 1;
    transform: translateY(0);
    height: 18px;
    visibility: visible;
}

/* Success States */
.input-wrapper.success input,
.input-wrapper.success select,
.input-wrapper.success textarea {
    border-color: #27ae60;
    box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.08);
}

/* Consent Group */
.consent-group {
    margin: 25px 0 15px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #123524;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: normal !important;
    margin-bottom: 0 !important;
}

.consent-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #123524;
}

.consent-text {
    font-size: 13px;
    line-height: 1.5;
    color: #555;
    font-weight: 400;
}

.privacy-link {
    color: #123524;
    text-decoration: none;
    font-weight: 500;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* Form Actions */
.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid #ecf0f1;
}

.btn-submit {
    padding: 14px 40px;
    background: linear-gradient(135deg, #123524 0%, #0b2a1a 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.25);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 123, 255, 0.35);
    background: linear-gradient(135deg, #123524 0%, #127f4a 100%);
}

.btn-submit:active {
    transform: translateY(0);
}

.required-note {
    font-size: 13px;
    color: #95a5a6;
}

/* Responsive */
@media (max-width: 768px) {
    .modern-form {
        padding: 24px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-header h3 {
        font-size: 22px;
    }

    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        font-size: 14px;
        padding: 11px 12px 11px 40px;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }

    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .required-note {
        text-align: center;
    }

    .consent-group {
        padding: 12px 15px;
    }
}


.legacy-map-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.legacy-map-container iframe {
    width: calc(100% + 160px);
    height: 650px;
    border: 0;
    margin-top: -70px;
    transform: translateX(-160px);
}

@media (max-width: 1199px) and (min-width: 768px) {
    .legacy-map-container iframe {
        width: calc(100% + 100px);
        transform: translateX(-100px);
    }
}

/* Colores para los íconos de redes sociales */
/*.inline-list .fa-facebook-square {
    color: #1877F2;
}

.inline-list .fa-x-twitter {
    color: #000000;
}

.inline-list .fa-google-plus-square {
    color: #DB4437;
}

.inline-list .fa-youtube-square {
    color: #FF0000;
}

.inline-list .fa-instagram {
    /* Degradado oficial de Instagram */
    /*background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.inline-list .fa-tiktok {
    color: #000000;
    text-shadow: 2px 0 0 #00f2ea, -2px 0 0 #fe2c55;
    /* Efecto característico de TikTok */
/*}


.inline-list li {
    display: inline-block;
    margin: 0 10px;
    list-style: none;
}

.inline-list a {
    transition: transform 0.3s ease;
    text-decoration: none;
}

.inline-list a:hover {
    transform: scale(1.2);
    /* Efecto hover */
/*}

footer .inline-list .fa-facebook-square:hover {
    color: #1877F2;
}

footer .inline-list .fa-x-twitter:hover {
    color: #000000;
}

footer .inline-list .fa-google-plus-square:hover {
    color: #DB4437;
}

footer .inline-list .fa-youtube-square:hover {
    color: #FF0000;
}

footer .inline-list .fa-instagram:hover {
    -webkit-text-fill-color: transparent;
}

footer .inline-list .fa-tiktok:hover {
    color: #000000;
}

.inline-list .fa-instagram-simple {
    color: #E4405F;
}*/

/* ============================================
   FOOTER PRINCIPAL
   ============================================ */

.site-footer {
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 60px 0 40px;
    /* border-top: 4px solid #e8b931; */
}

.footer-container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 85%;
}

/* ============================================
   GRID DE COLUMNAS
   ============================================ */

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 2fr 2fr;
    gap: 40px;
}


/* ============================================
   COLUMNA 1 - LOGO Y MARCA
   ============================================ */

.brand-col {
    display: flex;
    flex-direction: column;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo {
    max-width: 300px;
    height: auto;
    /* filter: brightness(0) invert(1); */
}

.brand_name-footer {
    margin: 0;
}

.brand_name-footer a {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.brand_name-footer a span {
    color: #e8b931;
}

.brand_name-footer a:hover {
    color: #e8b931;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
    margin: 0 0 15px 20px;
    max-width: 280px;
}

.trust-badge {
    display: inline-block;
    background: rgba(232, 185, 49, 0.15);
    color: #e8b931;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(232, 185, 49, 0.3);
    width: fit-content;
}

.trust-badge i {
    margin-right: 8px;
}


/* ============================================
   TÍTULOS DE COLUMNAS
   ============================================ */

.footer-col h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 18px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col h4 i {
    color: #e8b931;
    font-size: 20px;
}


/* ============================================
   LISTAS
   ============================================ */

.brush-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.brush-list li {
    padding: 5px 0 5px 30px;
    font-size: 14px;
    color: #ccc;
    position: relative;
    transition: all 0.3s ease;
    cursor: default;
}


/* ============================================
   VIÑETA / ICONO
   ============================================ */

.brush-list li::before {
    content: "\f0da";
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    top: 5px;
    color: #e8b931;
    font-size: 14px;
    transition: transform 0.3s ease;
}


/* ============================================
   EFECTO HOVER DE LAS LISTAS
   ============================================ */

.brush-list li:hover::before {
    transform: rotate(-20deg) scale(1.2);
}

.brush-list li:hover {
    color: #fff;
    padding-left: 35px;
}


/* ============================================
   SERVICES
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}


/* ============================================
   SERVICE AREAS
   ============================================ */

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 0;
}


/* Las áreas necesitan un poco menos de espacio
   para aprovechar mejor las dos columnas */

.areas-grid li {
    padding-left: 22px;
}


/* ============================================
   ELEMENTOS ADICIONALES
   ============================================ */

/* Ocultos inicialmente */
.brush-list.compact .extra-item {
    display: none;
}

/* Mostrar cuando se expande */
.brush-list.compact.footer-list-expanded .extra-item {
    display: list-item;
}


/* ============================================
   BOTÓN VIEW MORE
   ============================================ */

.show-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: none;
    border: none;

    color: #e8b931;
    cursor: pointer;

    font-family: inherit;
    font-size: 13px;
    font-weight: 600;

    padding: 5px 0;
    margin-top: 8px;

    transition: all 0.3s ease;
}

.show-more:hover {
    color: #fff;
    text-decoration: none;
}

.show-more i {
    font-size: 10px;
    transition: transform 0.3s ease;
}


/* Flecha hacia arriba cuando está abierto */

.show-more.open i {
    transform: rotate(180deg);
}


/* ============================================
   CONTACTO
   ============================================ */

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 6px 0;
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
}

.contact-info li i {
    color: #e8b931;
    font-size: 16px;
    min-width: 18px;
    margin-top: 2px;
}

.contact-info li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info li a:hover {
    color: #e8b931;
}


/* ============================================
   REDES SOCIALES
   ============================================ */

.social-footer {
    margin-top: 20px;
    
}

.social-footer h4 {
    font-size: 15px;
    margin-bottom: 12px;
}

.inline-list {
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: wrap;
}

.inline-list li a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;

    color: #aaa;
    font-size: 20px;

    text-decoration: none;

    transition: all 0.3s ease;

    border: 1px solid rgba(255, 255, 255, 0.05);
}

.inline-list li a:hover {
    background: #e8b931;
    color: #1a1a2e;

    transform: translateY(-3px);

    box-shadow: 0 6px 20px rgba(232, 185, 49, 0.3);
}


/* ============================================
   COPYRIGHT BAR
   ============================================ */

.copyright-bar {
    background: #11111f;
    padding: 18px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.copyright-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;

    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    color: #666;
    font-size: 14px;
}

.copyright a {
    color: #888;
    text-decoration: none;
    margin-left: 15px;

    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #e8b931;
}


/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 992px) {

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-description {
        max-width: 100%;
    }

    .areas-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 15px;
    }
}


/* ============================================
   RESPONSIVE - MÓVIL
   ============================================ */

@media (max-width: 576px) {

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .logo-wrapper {
        justify-content: center;
    }

    .trust-badge {
        margin: 0 auto;
    }


    /* Services y áreas en una sola columna */

    .services-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }


    /* Centrar elementos */

    .brush-list li {
        padding: 6px 0 6px 22px;
        text-align: left;
    }

    .brush-list li::before {
        display: block;
        left: 0;
        top: 6px;
    }

    .services-grid.compact:not(.footer-list-expanded) li:nth-child(n+5),
    .areas-grid.compact:not(.footer-list-expanded) li:nth-child(n+7) {
        display: none;
    }

    .brush-list li:hover {
        padding-left: 0;
    }


    /* Botón */

    .show-more {
        margin-left: auto;
        margin-right: auto;
    }


    /* Contacto */

    .contact-info li {
        justify-content: flex-start;
        text-align: left;
    }


    /* Redes */

    .inline-list {
        justify-content: center;
    }


    /* Copyright */

    .copyright-bar .container {
        justify-content: center;
        text-align: center;
    }

    .copyright a {
        margin: 0 5px;
    }
}


/* ============================================
   HEADER - REDES SOCIALES
   ============================================ */

/* Contenedor del banner - usar flex para alinear elementos */
.banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 20px;
}

/* Grupo de información (teléfonos + horario) */
.banner .info-group {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Mensaje y horario */
.banner .quote-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.banner .p__mod {
    margin: 0;
    font-size: 28px;
    line-height: 1.2;
}

.banner .quote-info dl {
    margin: 8px 0 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Teléfonos en una columna a la derecha */
.banner .phone-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.banner .phone-list a {
    color: #123524;
    font-size: 25px;
    line-height: 1.3;
    white-space: nowrap;
    transition: color 0.25s ease, transform 0.25s ease, text-shadow 0.25s ease;
}

.banner .phone-list a:hover {
    color: #0f5c3c;
    transform: translateX(4px);
    text-shadow: 0 2px 8px rgba(18, 53, 36, 0.25);
}

.banner .phone-list i {
    width: 18px;
    margin-right: 5px;
    text-align: center;
}

.banner .phone-list .fa-whatsapp {
    color: #25d366;
}

.banner .phone-list .fa-phone {
    color: #0077b6;
}

.banner .quote-info dl dt {
    margin: 0;
    font-weight: bold;
}

.banner .quote-info dl dd {
    margin: 0;
}

/* ============================================
   LISTA DE REDES SOCIALES
   ============================================ */

   .header-container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 85%;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-shrink: 0;
}

.social-icons li {
    display: inline-block;
    margin: 0;
}

.social-icons li a {
    display: inline-block;
    font-size: 28px;
    color: #555;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
}

.social-icons li a:hover {
    transform: scale(1.15);
}

/* Colores específicos para cada red social (opcional) */
.social-icons li a.fa-facebook-square {
    color: #1877f2;
}

.social-icons li a.fa-x-twitter {
    color: #000000;
}

.social-icons li a.fa-google-plus-square {
    color: #db4437;
}

.social-icons li a.fa-youtube-square {
    color: #ff0000;
}

.social-icons li a.fa-instagram {
    /* Degradado oficial de Instagram */
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-icons li a.fa-tiktok {
    color: #000000;
    text-shadow: 2px 0 0 #00f2ea, -2px 0 0 #fe2c55;
}



/* ============================================
   RESPONSIVE - MÓVILES
   ============================================ */

@media (max-width: 768px) {
    .banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .banner .info-group {
        width: 100%;
    }

    .social-icons {
        width: 100%;
        justify-content: center;
        gap: 15px;
        padding-top: 10px;
        border-top: 1px solid #ddd;
    }

    .social-icons li a {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .social-icons li a {
        font-size: 28px;
    }
}



/* ============================================
   RESPONSIVE - TABLETS Y MÓVILES
   ============================================ */

/* Tablets y pantallas medianas */
@media (max-width: 992px) {
    .banner {
        flex-wrap: wrap;
        gap: 10px;
    }

    .banner .info-group {
        flex: 1 1 60%;
    }

    .social-icons {
        flex: 0 1 auto;
    }
}

/* Móviles - como en tu imagen */
@media (max-width: 768px) {
    .banner {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 10px 0;
    }

    .banner .info-group {
        align-items: flex-start;
        width: 100%;
    }

    .banner .p__mod {
        font-size: 20px;
    }

    .banner .quote-info dl {
        font-size: 12px;
    }

    .banner .phone-list {
        gap: 3px;
    }

    /* Redes sociales a la derecha en móvil */
    .social-icons {
        justify-content: flex-end;
        width: 100%;
        gap: 12px;
        padding-top: 5px;
        border-top: 1px solid #eee;
    }

    .social-icons li a {
        font-size: 26px;
    }
}

/* Móviles muy pequeños */
@media (max-width: 480px) {
    .banner .p__mod {
        font-size: 18px;
    }

    .banner .phone-list a {
        font-size: 14px;
    }

    .banner .quote-info dl {
        font-size: 11px;
    }

    .social-icons li a {
        font-size: 22px;
    }
}

/* Orden del header en tablets y móviles */
@media (max-width: 992px) {
    .banner {
        float: none;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .banner .info-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 8px;
    }

    .banner .quote-info {
        display: contents;
    }

    .banner .p__mod {
        order: 1;
        text-align: center;
    }

    .banner .phone-list {
        order: 2;
        align-items: center;
    }

    .banner .quote-info dl {
        order: 3;
        margin-top: 0;
        justify-content: center;
    }

    .banner .social-icons {
        order: 2;
    }
}