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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ COLOR PALETTE ============ */
/* Verde Oliva: #556B2F */
/* Azul Marino: #0B3D5C */
/* Dorado: #D4AF37 */
/* Plateado: #C0C0C0 */
/* Blanco: #FFFFFF */

/* ============ HEADER ============ */
header {
    background: linear-gradient(135deg, #0B3D5C 0%, #1a5a7a 100%);
    color: white;
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    border-bottom: 3px solid #D4AF37;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s, color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    opacity: 0.8;
    color: #D4AF37;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/* ============ HERO SECTION ============ */
.hero {
    background: linear-gradient(135deg, #546BC9 0%, #1a5a7a 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 3000 2000"><defs><pattern id="pattern" patternUnits="userSpaceOnUse" width="50" height="200"><circle cx="50" cy="50" r="1" fill="rgba(212,175,55,0.1)"/></pattern></defs><rect width="1200" height="600" fill="url(%23pattern)"/></svg>');
    color: white;
    padding: 10rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212,175,55,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(85,107,47,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 61, 92, 0.3);
}

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

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: slideDown 0.8s ease-out;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
    color: #FFFFFF;
}

.hero-main {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    animation: slideUp 0.8s ease-out;
    font-weight: 300;
    color: #546BC9;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #FFFFFF;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    display: inline-block;
    background: #D4AF37;
    color: #546BC9;
    border: 2px solid #D4AF37;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s, color 0.3s;
    font-weight: 700;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    background: #FFFFFF;
    color: #0B3D5C;
}

/* ============ SERVICIOS SECTION ============ */
.servicios {
    padding: 8rem 0;
    background: #FFFFFF;
}

.servicios h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    color: #546BC9;
    font-weight: 700;
    position: relative;
}

.servicios h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #556B2F);
    margin: 1rem auto 0;
}

/* Servicio Completo */
.servicio-completo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    animation: fadeInUp 0.8s ease-out;
}

.servicio-completo.reverse {
    direction: rtl;
}

.servicio-completo.reverse > * {
    direction: ltr;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.servicio-texto {
    padding: 2rem;
}

.servicio-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.servicio-texto h3 {
    font-size: 2rem;
    color: #556B2F;
    margin-bottom: 1rem;
    font-weight: 700;
}

.servicio-texto p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.beneficios {
    list-style: none;
}

.beneficios li {
    font-size: 0.95rem;
    color: #546BC9;
    margin: 0.8rem 0;
    font-weight: 600;
}

.beneficios li::before {
    content: '✓ ';
    color: #D4AF37;
    font-weight: bold;
    margin-right: 0.5rem;
}

.servicio-galeria {
    padding: 0;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.galeria-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.4s, box-shadow 0.4s;
    box-shadow: 0 8px 25px rgba(11, 61, 92, 0.2);
    cursor: pointer;
    border: 3px solid #D4AF37;
}

.galeria-img:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    border-color: #C0C0C0;
}

.servicio-icono-grande {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: #D4AF37;
    opacity: 0.2;
}

/* ============ GALERÍA COMPLETA ============ */
.galeria-completa {
    padding: 8rem 0;
    background: linear-gradient(135deg, #546BC9 0%, #e8e8e8 100%);
}

.galeria-completa h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #546BC9;
    font-weight: 700;
}

.galeria-completa h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #556B2F);
    margin: 1rem auto 0;
}

.galeria-subtitulo {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.galeria-filtros {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filtro-btn {
    padding: 0.8rem 2rem;
    border: 2px solid #9cafba;
    background: white;
    color:#546BC9;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 0.95rem;
}

.filtro-btn:hover,
.filtro-btn.activo {
    background: #546BC9;
    color: #D4AF37;
    box-shadow: 0 8px 20px rgba(11, 61, 92, 0.3);
    border-color: #D4AF37;
}

.galeria-grid-grande {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.galeria-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(11, 61, 92, 0.2);
    cursor: pointer;
    height: 300px;
    animation: fadeIn 0.5s ease-out;
    border: 2px solid #D4AF37;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 61, 92, 0.95), rgba(85, 107, 47, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

.galeria-overlay h4 {
    color: #D4AF37;
    font-size: 1.3rem;
    text-align: center;
    font-weight: 700;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============ CONTACTO ============ */
.contacto {
    background: linear-gradient(135deg, #9cafba 0%, #546BC9 100%);
    color: white;
    padding: 8rem 0;
    text-align: center;
    border-top: 3px solid #D4AF37;
}

.contacto h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #FFFFFF;
}

.contacto > .container > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #D4AF37;
}

.contacto-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: rgba(212, 175, 55, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, background 0.3s;
    border: 2px solid #D4AF37;
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(212, 175, 55, 0.2);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.info-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #D4AF37;
}

.info-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFFFFF;
}

.info-card a,
.info-card p {
    color: white;
    text-decoration: none;
    font-size: 1.05rem;
}

.info-card a:hover {
    color: #D4AF37;
    text-decoration: underline;
}

.contacto-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 1.1rem;
    border: 2px solid transparent;
}

.contact-button.whatsapp {
    background: #25D366;
    color: white;
}

.contact-button.email {
    background: #D4AF37;
    color: #0B3D5C;
}

.contact-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* ============ FOOTER ============ */
footer {
    background: #546BC9;
    color: white;
    text-align: center;
    padding: 3rem 0;
    border-top: 3px solid #D4AF37;
}

footer p {
    margin: 0.8rem 0;
    font-size: 0.95rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 2000px) {
    .servicio-completo {
        grid-template-columns: 1fr;
    }

    .servicio-completo.reverse {
        direction: ltr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-main {
        font-size: 1.3rem;
    }

    .servicios h2,
    .contacto h2,
    .galeria-completa h2 {
        font-size: 2rem;
    }

    .servicio-texto h3 {
        font-size: 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .galeria-grid-grande {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .galeria-item {
        height: 250px;
    }
}

@media (max-width: 1200px) {
    .logo-img {
        height: 40px;
    }

    .hero {
        padding: 5rem 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-main {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .servicios {
        padding: 4rem 0;
    }

    .servicios h2 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .servicio-completo {
        margin-bottom: 3rem;
    }

    .servicio-texto {
        padding: 1rem 0;
    }

    .servicio-icon {
        font-size: 2.5rem;
    }

    .servicio-texto h3 {
        font-size: 1.2rem;
    }

    .galeria-grid {
        grid-template-columns: 1fr;
    }

    .galeria-img {
        height: 200px;
    }

    .galeria-filtros {
        gap: 0.5rem;
    }

    .filtro-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .galeria-grid-grande {
        grid-template-columns: 1fr;
    }

    .galeria-item {
        height: 200px;
    }

    .nav-links {
        gap: 1rem;
    }

    .contacto {
        padding: 4rem 0;
    }

    .contacto h2 {
        font-size: 1.8rem;
    }

    .contact-button {
        width: 100%;
        justify-content: center;
    }
}
