/* --- VARIABLES & RESET --- */
:root {
    --rr-red: #E63946;
    /* Rojo deportivo */
    --rr-dark: #0a0a0a;
    /* Negro más profundo */
    --rr-gray: #1E1E1E;
    /* Gris taller */
    --text-main: #FFFFFF;
    --text-sec: #A0A0A0;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--rr-dark);
    color: var(--text-main);
    overflow-x: hidden;
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

a {
    text-decoration: none;
    color: white;
}

ul {
    list-style: none;
}

/* --- HEADER --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-main);
}

.logo span {
    color: var(--rr-red);
}

.nav-menu ul {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--rr-red);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--rr-red);
}

.cta-btn {
    background-color: var(--rr-red);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--rr-red);
    cursor: pointer;
    display: inline-block;
}

.cta-btn:hover {
    background-color: transparent;
    color: var(--rr-red);
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.4);
}

.cta-btn.white-btn {
    background: white !important;
    color: #b8860b !important;
    border-color: white !important;
}

.cta-btn.white-btn:hover {
    background: #000 !important;
    color: white !important;
    border-color: #000 !important;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: white;
}

/* =========================================
   ESTILOS ESPECÍFICOS CHAPA Y PINTURA
   ========================================= */

/* --- HERO "MÁSCARA INVERTIDA" (APPLE STYLE) --- */
.apple-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    background-color: #000;
}

.hero-bg-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('media/prschblanco.jpeg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.mask-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 2;
    mix-blend-mode: multiply;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zoom-container {
    text-align: center;
    will-change: transform;
}

.zoom-text {
    font-size: 12vw;
    line-height: 0.85;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    white-space: nowrap;
    letter-spacing: -5px;
}

.zoom-text span {
    display: block;
}

/* Indicador de Scroll Rojo */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--rr-red);
    /* ROJO */
    text-align: center;
    font-weight: bold;
    z-index: 10;
    animation: bounce 2s infinite;
}

.arrow-down {
    font-size: 1.5rem;
    margin-top: 5px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -10px);
    }

    60% {
        transform: translate(-50%, -5px);
    }
}


/* --- SECCIÓN BENEFICIOS (ICONOS SVG) --- */
.paint-benefits {
    padding: 100px 20px;
    background-color: var(--rr-dark);
    position: relative;
    z-index: 5;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.intro-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px auto;
}

.intro-box .section-title {
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.intro-box .section-title span {
    color: var(--rr-red);
}

.intro-box p {
    font-size: 1.2rem;
    color: var(--text-sec);
    line-height: 1.8;
}

.benefits-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: linear-gradient(145deg, #151515, #101010);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(230, 57, 70, 0.3);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--rr-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.b-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.b-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--rr-red);
    fill: none;
    stroke-width: 1.5;
    filter: drop-shadow(0 0 8px rgba(230, 57, 70, 0.3));
    transition: var(--transition);
}

.benefit-card:hover .b-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(230, 57, 70, 0.6));
}


.benefit-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.benefit-card p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
}


/* --- ZIG ZAG SECTION --- */
.zig-zag-section {
    background-color: #0d0d0d;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.zz-row {
    display: flex;
    min-height: 500px;
}

.zz-content {
    flex: 1;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.zz-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.zz-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.zz-row:hover .zz-image img {
    transform: scale(1.05);
}

.zz-row.reversed {
    flex-direction: row-reverse;
    background-color: #080808;
}

.zz-content h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.zz-content h3 span {
    color: var(--rr-red);
}

.red-line-small {
    width: 50px;
    height: 4px;
    background: var(--rr-red);
    margin-bottom: 30px;
    border-radius: 2px;
}

.zz-content p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 600px;
}

.zz-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: white;
    font-weight: 500;
}

.zz-list li::before {
    content: '✓';
    color: var(--rr-red);
    position: absolute;
    left: 0;
    font-weight: bold;
}


/* --- GIFT BANNER (MODIFICADO POSICIÓN Y CENTRADO) --- */
.gift-banner {
    background: linear-gradient(to right, #b8860b, #daa520);
    padding: 80px 20px;
    text-align: center;
    /* Esto centra el texto y elementos inline-block */
    position: relative;
    z-index: 5;
}

.gift-content {
    max-width: 800px;
    margin: 0 auto;
}

/* MODIFICADO: Centrado absoluto del emoticono */
.gift-icon {
    font-size: 5rem;
    margin: 30px 0;
    /* Espacio arriba y abajo */
    animation: bounce 2s infinite;
    display: inline-block;
    /* IMPORTANTE: Para que el text-align: center del padre lo centre */
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.gift-content h2 {
    font-size: 2.5rem;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

.gift-content p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 500;
}


/* --- FORMULARIO --- */
.contact-section {
    padding: 100px 20px;
    background-color: #050505;
    position: relative;
    z-index: 5;
}

.contact-container.full-width {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: white;
}

.form-header .section-title span {
    color: var(--rr-red);
}

.form-header p {
    color: var(--text-sec);
}

.contact-form-wrapper.large-form {
    background: rgba(30, 30, 30, 0.4);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.form-section-title {
    color: var(--rr-red);
    font-size: 1.3rem;
    margin: 20px 0;
    text-transform: uppercase;
}

.form-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    color: #ddd;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    background: #151515;
    border: 1px solid #333;
    padding: 15px;
    color: white;
    border-radius: 8px;
    width: 100%;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--rr-red);
}

.submit-btn {
    width: 100%;
    max-width: 400px;
    padding: 18px;
    background: var(--rr-red);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    margin: 0 auto;
    display: block;
}

.submit-btn:hover {
    background: white;
    color: var(--rr-red);
}

/* =========================================
   FOOTER PREMIUM SEO
   ========================================= */
.main-footer {
    background-color: #050505;
    /* Fondo casi negro */
    color: #aaa;
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
    /* Distribución de columnas */
    gap: 50px;
    margin-bottom: 60px;
}

/* Columna Marca */
.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-logo span {
    color: var(--rr-red);
}

.footer-desc {
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

.footer-desc strong {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    color: white;
}

.social-links a:hover {
    background: var(--rr-red);
    transform: translateY(-3px);
}

/* Títulos de Columna */
.footer-col h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    /* Pequeña línea roja decorativa */
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--rr-red);
}

/* Enlaces y Listas */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    transition: 0.3s;
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--rr-red);
    padding-left: 5px;
    /* Efecto deslizamiento */
}

/* Contacto */
.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    line-height: 1.5;
}

.contact-info a {
    color: #aaa;
    transition: 0.3s;
    display: flex;
    gap: 10px;
}

.contact-info a:hover {
    color: white;
}

.c-icon {
    width: 20px;
    height: 20px;
    color: var(--rr-red);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Formulario Newsletter */
.newsletter-text {
    margin-bottom: 15px;
}

.footer-form {
    display: flex;
    background: #151515;
    border: 1px solid #333;
    border-radius: 50px;
    padding: 5px;
    margin-bottom: 20px;
}

.footer-form input {
    background: transparent;
    border: none;
    color: white;
    padding: 10px 15px;
    width: 100%;
    outline: none;
}

.footer-form button {
    background: var(--rr-red);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-form button:hover {
    background: white;
    color: black;
}

.brand-badges {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

/* Footer Bottom (Legal) */
.footer-bottom {
    background: #020202;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 20px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    font-size: 0.85rem;
    color: #666;
    transition: 0.3s;
}

.legal-links a:hover {
    color: white;
}




/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        /* 2 columnas en tablet */
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        /* 1 columna en móvil */
        gap: 40px;
        padding: 0 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
}

/* =========================================
   MEDIA QUERIES (RESPONSIVE TOTAL)
   ========================================= */

@media (max-width: 1024px) {
    .zoom-text {
        font-size: 14vw;
    }

    .zz-content {
        padding: 50px;
    }

    .zz-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {

    /* HEADER & NAV */
    header {
        padding: 15px 20px;
    }

    .hamburger {
        display: block;
        z-index: 101;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--rr-dark);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        z-index: 100;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 30px;
    }

    .nav-menu a {
        font-size: 1.5rem;
    }

    header .cta-btn {
        display: none;
    }

    /* HERO */
    .zoom-text {
        font-size: 18vw;
        line-height: 0.9;
        letter-spacing: -2px;
    }

    /* BENEFICIOS */
    .paint-benefits {
        padding: 60px 20px;
    }

    .intro-box .section-title {
        font-size: 2rem;
    }

    /* ZIG ZAG */
    .zz-row,
    .zz-row.reversed {
        flex-direction: column;
    }

    .zz-image {
        width: 100%;
        height: 300px;
        order: -1;
    }

    .zz-content {
        padding: 40px 20px;
        text-align: left;
    }

    /* GIFT BANNER MOBILE */
    .gift-content h2 {
        font-size: 1.8rem;
    }

    .gift-icon {
        font-size: 4rem;
        margin: 20px 0;
    }

    /* FORMULARIO */
    .contact-form-wrapper.large-form {
        padding: 25px 20px;
    }

    .form-grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .zoom-text {
        font-size: 20vw;
    }

    .benefits-grid-cards {
        grid-template-columns: 1fr;
    }

    .intro-box .section-title {
        font-size: 1.8rem;
    }

    .intro-box p {
        font-size: 1rem;
    }

    .zz-content h3 {
        font-size: 1.8rem;
    }

    .gift-banner {
        padding: 60px 20px;
    }

    .gift-content h2 {
        font-size: 1.5rem;
    }
}


/* --- Estilos para el nuevo Logo de Imagen en el Header --- */

/* Reseteamos estilos que pudiera tener el enlace de texto anterior */
.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

/* Controlamos el tamaño de la imagen del logo */
.logo img {
    /* Ajusta la altura según el grosor que quieras para tu barra de navegación.
       Entre 40px y 60px suele ser estándar */
    height: 50px; 
    width: auto; /* Mantiene la proporción de la imagen */
    display: block; /* Elimina espacios extraños debajo de la imagen */
    transition: transform 0.3s ease, opacity 0.3s ease; /* Suaviza la interacción */
}

/* Efecto hover opcional para que se note que es clicable */
.logo img:hover {
    transform: scale(1.05); /* Un ligero aumento de tamaño */
    opacity: 0.9;
}

/* Ajuste para móviles si la barra es más estrecha */
@media (max-width: 768px) {
    .logo img {
        height: 40px; /* Un poco más pequeño en móvil */
    }
}


/* Estilos para Sección de Reparaciones Especializadas */
.specialized-repairs {
    padding: 80px 20px;
    background-color: #111; /* Fondo oscuro acorde a la web */
    color: #fff;
}

.special-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.special-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

.special-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border-color: #e63946; /* Tu color de acento rojo */
}

.card-header {
    padding: 25px;
}

.card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
}

.card-header p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.5;
}

/* Estilo para la miniatura de video */
.video-thumbnail {
    display: block;
    position: relative;
    width: 100%;
    height: 300px; /* Altura fija para uniformidad */
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Efecto Overlay (Capa oscura con botón Play) */
.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.play-icon {
    font-size: 3rem;
    color: #fff;
    background: rgba(230, 57, 70, 0.8); /* Botón rojo semitransparente */
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    padding-left: 5px; /* Ajuste visual óptico del triángulo */
    transition: transform 0.3s ease, background 0.3s ease;
}

.video-label {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    color: #fff;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

/* Efectos Hover */
.video-thumbnail:hover img {
    transform: scale(1.05);
}

.video-thumbnail:hover .play-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.video-thumbnail:hover .play-icon {
    transform: scale(1.1);
    background: #e63946; /* Rojo sólido al hover */
}

.video-thumbnail:hover .video-label {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .special-grid {
        grid-template-columns: 1fr; /* Una sola columna en móvil */
        gap: 30px;
    }
    
    .video-thumbnail {
        height: 250px;
    }
}

/* --- AJUSTES REPARACIONES ESPECIALIZADAS (GRID) --- */
.specialized-repairs {
    padding: 80px 20px 40px; /* Ajustado padding inferior */
    background-color: #111;
    color: #fff;
}

/* Forzar que las tarjetas sean idénticas */
.special-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Alinea el contenido verticalmente */
}

.card-header {
    padding: 25px;
    flex-grow: 1; /* Asegura que el texto ocupe espacio uniforme */
}

/* Forzar altura idéntica de imágenes */
.video-thumbnail {
    display: block;
    position: relative;
    width: 100%;
    height: 320px; /* Altura fija aumentada para mejor visualización */
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* CLAVE: Recorta la imagen para llenar el hueco sin deformar */
    object-position: center;
    transition: transform 0.5s ease;
}

/* --- NUEVA SECCIÓN: PROYECTO DESTACADO (ALFA) --- */
.featured-project-section {
    background-color: #111;
    padding: 0 20px 80px; /* Padding inferior grande, superior 0 pegado al anterior */
}

.project-banner {
    background: linear-gradient(145deg, #1e1e1e, #000); /* Fondo degradado elegante */
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #444;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.project-content {
    padding: 50px;
    flex: 1;
}

.project-tag {
    background-color: #e63946;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
}

.project-content h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.project-content span {
    color: #e63946; /* Rojo corporativo */
}

.project-content p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 90%;
}

.btn-outline-white {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: #fff;
    color: #000;
}

.project-image {
    flex: 1.2; /* La imagen ocupa un poco más que el texto */
    height: 450px;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .project-banner {
        flex-direction: column-reverse; /* Imagen arriba, texto abajo en móvil */
    }
    
    .project-image {
        height: 300px;
        width: 100%;
    }
    
    .project-content {
        padding: 30px;
        text-align: center;
    }
    
    .project-content p {
        margin: 0 auto 30px;
    }
}