:root {
    --vgm-green: #5b6d44;
    --vgm-gold: #b38e5d;
    --vgm-cream: #f9f7e8;
    --white: #ffffff;
    --text-dark: #354f52;
    --text-muted: #52796f;
    --header-height: 100px;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background-color: var(--vgm-cream); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Header */
.main-header { height: var(--header-height); background: rgba(255, 255, 255, 0.98); position: fixed; top: 0; width: 100%; z-index: 1000; display: flex; align-items: center; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.header-flex { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo-img { height: auto; max-height: 80px; width: auto; object-fit: contain; }

/* Navegación */
.nav-menu ul { display: flex; list-style: none; gap: 2rem; }
.nav-menu a { text-decoration: none; color: var(--text-dark); font-weight: 600; font-size: 0.95rem; transition: var(--transition); }
.nav-menu a:hover { color: var(--vgm-green); }

/* Botones */
.btn { padding: 0.8rem 2rem; border-radius: 50px; text-decoration: none; font-weight: 700; display: inline-block; transition: var(--transition); text-align: center; border: none; cursor: pointer; }
.btn-primary { background: var(--vgm-green); color: var(--white); }
.btn-primary:hover { background: var(--vgm-gold); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(179, 142, 93, 0.2); }
.btn-outline { border: 2px solid var(--vgm-green); color: var(--vgm-green); }

/* Hero Section */
.hero { padding: calc(var(--header-height) + 60px) 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; }
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 3.8rem); line-height: 1.1; margin-bottom: 1.5rem; }
.hero-content h1 span { color: var(--vgm-gold); }
.badge { background: rgba(91, 109, 68, 0.1); color: var(--vgm-green); padding: 6px 16px; border-radius: 4px; font-weight: 700; font-size: 0.8rem; margin-bottom: 1.5rem; display: inline-block; letter-spacing: 1px; }

/* AJUSTE BOTONES MÁS ABAJO */
.hero-btns { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 1.5rem; 
    margin-top: 50px; 
}

/* Imágenes Nítidas */
.image-wrapper { width: 100%; max-width: 550px; border-radius: 30px; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,0.1); }
.image-wrapper img { width: 100%; height: 500px; object-fit: cover; display: block; image-rendering: -webkit-optimize-contrast; }

/* Sección Socias */
.nosotras-section { padding: 100px 0; background: var(--white); }
.underline { width: 60px; height: 3px; background: var(--vgm-gold); margin: 20px auto; }
.grid-nosotras { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 50px; }
.perfil { text-align: center; }
.perfil .img-container { width: 240px; height: 240px; margin: 0 auto 25px; border-radius: 50%; border: 5px solid var(--vgm-gold); overflow: hidden; background-color: var(--vgm-cream); }
.perfil img { width: 100%; height: 100%; object-fit: cover; display: block; }
.perfil h3 { color: var(--vgm-green); font-family: 'Playfair Display', serif; margin-bottom: 12px; font-size: 1.4rem; }

/* Servicios */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }
.service-card { padding: 3.5rem 2rem; background: var(--white); border-radius: 20px; border-bottom: 6px solid var(--vgm-gold); transition: var(--transition); text-align: center; }
.service-card:hover { transform: translateY(-12px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.service-card .icon { font-size: 3rem; margin-bottom: 1.5rem; display: block; }

/* Footer */
.main-footer { background: var(--text-dark); color: var(--white); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.footer-logo { height: 70px; margin-bottom: 1.5rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 50px; padding-top: 25px; text-align: center; font-size: 0.85rem; opacity: 0.8; }

/* WhatsApp */
.whatsapp-btn { position: fixed; bottom: 30px; right: 30px; background: #25D366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 1000; transition: var(--transition); }
.whatsapp-btn:hover { transform: scale(1.1); background: #1ebe57; }
.whatsapp-btn svg { width: 32px; height: 32px; }

/* Responsive */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .grid-nosotras { grid-template-columns: 1fr; gap: 50px; }
    .hero-btns { justify-content: center; }
    .image-wrapper { margin: 0 auto; }
}