```css
/* ==========================================================
   RESTAURACIÓN Y POLICROMÍA MAC
   styles.css
   ========================================================== */

/* ==========================================================
   VARIABLES
   ========================================================== */

:root{

    --cookie-primary:#4d3426;

    --color-marfil: #F7F3EB;
    --color-dorado: #B89B5E;
    --color-dorado-hover: #C7AA68;
	--color-arrow: #AB9D84;
	--color-arrow-hover: #AB9D84;

    --color-marron: #5B4636;
    --color-marron-claro: #7A624D;

    --color-burdeos: #7B4D4D;

    --color-gris: #8C8C8C;
    --color-gris-claro: #EAE7E0;

    --color-blanco: #FFFFFF;
    --color-negro: #222222;

    --shadow-soft:
        0 10px 30px rgba(0,0,0,0.08);

    --shadow-medium:
        0 15px 40px rgba(0,0,0,0.15);

    --transition:
        all .35s ease;

}

/* ==========================================================
   RESET
   ========================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--color-negro);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ==========================================================
   TIPOGRAFÍA
   ========================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {

    font-family:
        'Playfair Display',
        serif;

    font-weight: 600;
    color: var(--color-marron);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

/* ==========================================================
   LOADER
   ========================================================== */

#pageLoader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--color-marron);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.loader-content {
    text-align: center;
}

/* ==========================================================
   NAVBAR
   ========================================================== */

#mainNavbar {
    padding-top: 18px;
    padding-bottom: 18px;
    transition: var(--transition);
}

#mainNavbar.scrolled {
    /*background: rgba(91,70,54,.95);*/
	background:rgba(51,30,14,.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
}

.logo-img {
    width: 200px;
    /*height: 60px;*/
    object-fit: contain;
}

.brand-title {
    font-size: .9rem;
    color: white;
}

.brand-subtitle {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--color-dorado);
}

.nav-link {
    color: white !important;
    margin-left: 15px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: var(--color-dorado);
    transition: .3s;
}

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

.language-selector {
    display: flex;
    gap: 5px;
}

.btn-lang {
    color: white;
    border: 1px solid rgba(255,255,255,.3);
    font-size: .8rem;
}

.btn-lang:hover {
    background: var(--color-dorado);
    color: white;
}

/* ==========================================================
   HERO
   ========================================================== */

#heroSection {
    position: relative;
    height: 100vh;
    background:
        url("../img/hero/hero.jpg")
        center center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            rgba(0,0,0,.50),
            rgba(0,0,0,.60)
        );
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-small-title {
    color: var(--color-dorado);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: .9rem;
}

.hero-title {
    color: white;
    font-size: 4rem;
    margin-top: 20px;
    margin-bottom: 20px;
}

.hero-description {
    color: rgba(255,255,255,.9);
    font-size: 1.2rem;
    max-width: 800px;
    margin: auto;
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.8rem;
    animation:
        bounce 2s infinite;
}

@keyframes bounce {

    0%,100% {
        transform:
            translateX(-50%)
            translateY(0);
    }

    50% {
        transform:
            translateX(-50%)
            translateY(-12px);
    }
}

/* ==========================================================
   BOTONES
   ========================================================== */

.btn-gold {
    background: var(--color-dorado);
    color: white;
    border: none;
    padding:
        14px 28px;
    font-weight: 600;
}

.btn-gold:hover {
    background:
        var(--color-dorado-hover);
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--color-marron);
}

/* ==========================================================
   SECCIONES
   ========================================================== */

.section-padding {
    padding-top: 110px;
    padding-bottom: 110px;
	/* + */
	background: aliceblue;
}

.section-light {
    /*background: white;*/
	background: oldlace;
}

.section-dark {
    /*background: var(--color-marron);*/
	background: gray;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-subtitle {
    color: var(--color-dorado);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .9rem;
}

.section-title {
    font-size: 3rem;
    margin-top: 10px;
    margin-bottom: 20px;
}

.section-description {
    max-width: 800px;
    margin: auto;
    color: var(--color-gris);
}

```css id="n9h6yr"

/* ==========================================================
   TARJETAS DE SERVICIOS
   ========================================================== */

.service-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.service-card:hover {
    transform:
        translateY(-10px);
    box-shadow:
        var(--shadow-medium);
}

.service-image {
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .7s;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    padding: 25px;
    text-align: center;
}

.service-icon {
    font-size: 2rem;
    color: var(--color-dorado);
    margin-bottom: 15px;
}

.service-content h3 {
    margin-bottom: 15px;
}

.service-content p {
    color: var(--color-gris);
}

/* ==========================================================
   GALERÍA
   ========================================================== */

.gallery-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.gallery-card:hover {
    transform:
        translateY(-8px);
    box-shadow:
        var(--shadow-medium);
}

.gallery-header {
    padding: 20px;
}

.gallery-title {
    margin-bottom: 8px;
}

.gallery-description {
    color: var(--color-gris);
    font-size: .95rem;
}

/* ==========================================================
   COMPARADOR ANTES / DESPUÉS
   ========================================================== */

.before-after-container {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.before-image,
.after-image {
    position: absolute;
    inset: 0;
}

.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-image {
    width: 50%;
    overflow: hidden;
}

.comparison-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    cursor: ew-resize;
    z-index: 10;
}

.comparison-slider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: white;
    transform:
        translate(-50%, -50%);
    box-shadow:
        0 0 10px rgba(0,0,0,.25);
}

.image-label {
    position: absolute;
    top: 15px;
    padding: 6px 12px;
    background: rgba(0,0,0,.6);
    color: white;
    font-size: .85rem;
    border-radius: 30px;
    z-index: 20;
}

.label-before {
    left: 15px;
}

.label-after {
    right: 15px;
}

/* ==========================================================
   BOTÓN VER PROCESO
   ========================================================== */
.btn-process {
    background: transparent;
    border: 2px solid var(--color-dorado);
    color: var(--color-dorado);
    padding:  10px 20px;
    transition: var(--transition);
}

.btn-process:hover {
    background:   var(--color-dorado);
    color: white;
}

/* ==========================================================
   TARJETAS RESTAURACIÓN
   ========================================================== */

.work-info {
    padding: 25px;
}

.work-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.work-badge {
    background: var(--color-gris-claro);
    padding:  6px 12px;
    border-radius: 20px;
    font-size: .8rem;
}

/* ==========================================================
   PROYECTOS SUBVENCIONABLES
   ========================================================== */

.funding-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
}

.funding-card:hover {
    transform: translateY(-8px);
}

.funding-image {
    height: 260px;
    overflow: hidden;
}

.funding-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.funding-content {
    padding: 25px;
}

.funding-amounts {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.goal-label {
    font-weight: 700;
}

.raised-label {
    color: var(--color-dorado);
    font-weight: 700;
}

/* ==========================================================
   BARRA DE PROGRESO
   ========================================================== */

.progress {
    height: 24px;
    border-radius: 50px;
    background:  var(--color-gris-claro);
    overflow: hidden;
}

.progress-bar {
    background:  linear-gradient(90deg, var(--color-dorado), #d9bc7d);
    font-weight: 600;
    transition:  width 2s ease;
}

.progress-percentage {
    margin-top: 10px;
    text-align: right;
    font-weight: bold;
    color: var(--color-marron);
}

/* ==========================================================
   ESTADOS DEL PROYECTO
   ========================================================== */

.status-badge {
    display: inline-block;
    padding:
        8px 14px;

    border-radius: 30px;
    font-size: .8rem;
    margin-top: 15px;
}

.status-pending {
    background: #fff4d4;
    color: #9c7600;
}

.status-funding {
    background: #dff4ff;
    color: #006ea8;
}

.status-working {
    background: #e6ffe6;
    color: #228822;
}

.status-finished {
    background: #f0f0f0;
    color: #555;
}

```css id="x7pl4k"

/* ==========================================================
   DONACIONES
   ========================================================== */

.donation-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-medium);
}

.donation-card h3 {
    margin-bottom: 30px;
}

.donation-method {
    margin-bottom: 35px;
}

.donation-method h5 {
    margin-bottom: 12px;
}

.copy-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-radius: 12px;
    background: var(--color-gris-claro);
}

.copy-box span {
    font-weight: 600;
    word-break: break-word;
}

/* ==========================================================
   FORMULARIOS
   ========================================================== */

.form-control,
.form-select {
    border-radius: 12px;
    border: 1px solid #ddd;
    padding: 14px;
    min-height: 52px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-dorado);
    box-shadow:  0 0 0 0.25rem rgba(184,155,94,.2);
}

textarea.form-control {
    resize: vertical;
}

/* ==========================================================
   CONTACTO
   ========================================================== */

.contact-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    height: 100%;
}
.contact-card h3 {
    margin-bottom: 25px;
}

/* ==========================================================
   MODAL RESTAURACIÓN
   ========================================================== */

#processModal .modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

#processModal .modal-header {
    background: var(--color-marron);
    color: white;
    padding: 20px 30px;
}

#processModal .btn-close {
    filter: invert(1);
}

#processTimeline {
    position: relative;
    padding-left: 50px;
}

/* Línea vertical */

#processTimeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--color-dorado);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -43px;
    top: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-dorado);
    border: 4px solid white;
    box-shadow:
        0 0 10px rgba(0,0,0,.15);
}

.timeline-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.timeline-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    cursor: pointer;
}

.timeline-content {
    padding: 20px;
}

.timeline-step {
    color: var(--color-dorado);
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-title {
    margin-top: 8px;
    margin-bottom: 12px;
}

/* ==========================================================
   VISOR DE IMÁGENES
   ========================================================== */

#imageViewerModal {
    background: rgba(0,0,0,.95);
}

#viewerImage {
    max-height: 90vh;
    border-radius: 15px;
}

/* ==========================================================
   FOOTER
   ========================================================== */

.footer {
    background: #2f241c;
    color: rgba(255,255,255,.85);
    padding-top: 80px;
    padding-bottom: 30px;
}

.footer-title {
    color: white;
    margin-bottom: 20px;
}

.footer h5 {
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,.8);
}

.footer-links a:hover {
    color: var(cookie-primary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: white;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--cookie-primary);
}

.footer-bottom {
    margin-top: 40px;
}

.footer-bottom a {
    color: rgba(255,255,255,.8);
}

.footer-bottom a:hover {
    color: var(--color-dorado);
}

/* ==========================================================
   WHATSAPP FLOTANTE
   ========================================================== */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    z-index: 999;
    box-shadow:
        0 10px 25px rgba(0,0,0,.25);
}

.whatsapp-float:hover {
    color: white;
    transform: scale(1.08);
}

/* ==========================================================
   BOTÓN SUBIR ARRIBA
   ========================================================== */

.scroll-top-btn {
    position: fixed;
    left: 25px;
    bottom: 25px;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: var(--color-arrow);
    color: white;
    z-index: 999;
    display: none;
    box-shadow: var(--shadow-soft);
}

.scroll-top-btn:hover {
    background: var(--color-arrow-hover);
}

.scroll-top-btn.show {
    display: block;
    animation:
        fadeIn .4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

```css id="s4c9wf"

/* ==========================================================
   ANIMACIONES DE ENTRADA
   ========================================================== */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-50px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================
   EFECTOS VISUALES
   ========================================================== */

.glass-card {
    background:  rgba(255,255,255,.12);
    backdrop-filter:  blur(12px);
    border: 1px solid rgba(255,255,255,.15);
}

.hover-zoom {
    overflow: hidden;
}

.hover-zoom img {
    transition: .6s;
}

.hover-zoom:hover img {
    transform: scale(1.08);
}

.text-gold {
    color: var(--color-dorado);
}

.bg-marfil {
    background: var(--color-marfil);
}

.bg-dark-brown {
    background: var(--color-marron);
}

/* ==========================================================
   UTILIDADES
   ========================================================== */
.rounded-large {
    border-radius: 24px;
}

.shadow-soft {
    box-shadow: var(--shadow-soft);
}

.shadow-medium {
    box-shadow: var(--shadow-medium);
}

.cursor-pointer {
    cursor: pointer;
}

.object-cover {
    object-fit: cover;
}

.w-fit {
    width: fit-content;
}

/* ==========================================================
   TABLAS (FUTURO BACKOFFICE)
   ========================================================== */

.table-premium {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.table-premium thead {
    background: var(--color-marron);
    color: white;
}

/* ==========================================================
   BADGES
   ========================================================== */
.badge-gold {
    background: var(--color-dorado);
    color: white;
}

.badge-brown {
    background: var(--color-marron);
    color: white;
}

/* ==========================================================
   RESPONSIVE XL
   ========================================================== */

@media (max-width: 1400px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

/* ==========================================================
   RESPONSIVE LG
   ========================================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .before-after-container {
        height: 380px;
    }

    .timeline-card img {
        height: 280px;
    }

    .navbar-collapse {
        background: rgba(91,70,54,.97);
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
    }
}

/* ==========================================================
   RESPONSIVE TABLET
   ========================================================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .hero-description {
        font-size: 1rem;
    }

.section-padding {
    padding-top: 110px;
    padding-bottom: 110px;
    background-color: "aliceblue";
 }

    .section-title {
        font-size: 2rem;
    }

    .before-after-container {
        height: 300px;
    }

    .timeline-card img {
        height: 220px;
    }

    .donation-card {
        padding: 25px;
    }

    .contact-card {
        padding: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================================
   RESPONSIVE MÓVIL
   ========================================================== */

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-small-title {
        font-size: .75rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .before-after-container {
        height: 240px;
    }

    .timeline-card img {
        height: 180px;
    }

    .copy-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .whatsapp-float {
        width: 58px;
        height: 58px;
        font-size: 1.8rem;
    }

    .scroll-top-btn {
        width: 50px;
        height: 50px;
    }
}

/* ==========================================================
   IMPRESIÓN
   ========================================================== */

@media print {
    nav,
    footer,
    .whatsapp-float,
    .scroll-top-btn {
        display: none !important;
    }

    body {
        background: white;
    }
\}

/*==============================================================
    GOOGLE TRANSLATE BANNER
   ========================================================== */

.goog-te-gadget {
    display: none !important;
}

#google_translate_element {
    display: none !important;
}

.goog-tooltip {
    display: none !important;
}

.goog-tooltip:hover {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
.goog-logo-link {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
}

#google_translate_element {
    display: none !important;
}

/* ==========================================================
   FIN DEL ARCHIVO
   ========================================================== */


