.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;
}


/* ==========================================================
   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: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 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* ----- 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;
}


/* 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;
}

.btn-offer:hover {
    background-color: #b8922f;
    color: #fff;
    transform: scale(1.03);
    text-decoration: none;
}

/* ===== 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;
    }
}

