/* ================== HERO ================== */
.hero { display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.hero-text { padding: 2rem 0; }
.hero-title { font-size: 2.5rem; font-weight: 700; }
.hero-desc { margin: 1rem 0; color: #555; }
.hero-subtitle { color: #666; font-size: 0.9rem; text-transform: uppercase; }
.hero-img img { max-width: 100%; border-radius: 1rem; }

/* ================== COLLAGE ================== */
.collage { position: relative; }
.collage-ring { position: absolute; top: -20px; left: -20px; }
.collage-main { width: 100%; border-radius: 1rem; }
.collage-left { position: absolute; bottom: -20px; left: -20px; width: 40%; border-radius: .5rem; }
.collage-right { position: absolute; top: -20px; right: -20px; width: 40%; border-radius: .5rem; }
.collage-subtitle { color: #777; font-size: 0.9rem; }
.collage-title { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.collage-desc { margin-bottom: 1rem; color: #555; }
.collage-feature { display: flex; align-items: start; gap: 1rem; margin-bottom: 1rem; }
.collage-icon { background: #f3f3f3; padding: .8rem; border-radius: 50%; }

/* ================== SERVICES ================== */
.services { background: url("../img/vinculocraftfondo.png") center/cover no-repeat; position: relative; }
.services .overlay { position: absolute; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,.6); }
.services-subtitle { font-size: .9rem; text-transform: uppercase; }
.services-title { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.services-desc { font-size: 1rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.services-card { background: white; border-radius: 1rem; padding: 2rem; text-align: center; box-shadow: 0 3px 10px rgba(0,0,0,.1); }
.services-icon { font-size: 2rem; margin-bottom: 1rem; color: #007bff; }

/* ================== BENEFITS ================== */
.benefits-img img { width: 100%; height: 100%; object-fit: cover; }
.benefits-content { background: #f8f9fa; border-radius: 0 1rem 1rem 0; }
.benefits-subtitle { font-size: .9rem; color: #666; text-transform: uppercase; }
.benefits-title { font-size: 2rem; font-weight: 700; margin: 1rem 0; }
.benefits-desc { margin-bottom: 1rem; color: #555; }
.benefits-list { list-style: none; padding: 0; }
.benefits-list li { margin-bottom: .8rem; display: flex; align-items: center; gap: .5rem; }
.benefits-list i { color: #007bff; }

/* ================== BOTÓN GENERAL ================== */
.btn-brand { background: #007bff; color: white; padding: .8rem 1.5rem; border-radius: .5rem; text-decoration: none; transition: .3s; }
.btn-brand:hover { background: #0056b3; color: #fff; }
