body {
font-family: Arial, sans-serif;
margin: 0;
background-color: lab(96.14% 1.34 0.46);
color: #0e0101;
}

header {
background-image: url("images/gold.jpg");
background-size: cover; /* La foto cubre todo el área */
background-position: center; /* Centrada */
background-repeat: no-repeat; /* Sin repetición */
color: #f4ebeb;
padding: 100px 20px; /* Más altura para que la foto luzca */
text-align: center;
}

header h1 {
font-size: 36px;
margin-bottom: 10px;
}

header p {
font-size: 18px;
opacity: 0.9;
}

section {
padding: 30px;
margin: 20px;
background-color: #f7f5f5;
border-radius: 8px;
}

h2 {
color: #8d9905;
}

footer {
text-align: center;
padding: 20px;
background-color: hsl(0, 33%, 99%);
color: #f2f0f0;
}
ul {
list-style: none;
padding: 0;
}

ul li {
padding: 8px 0;
border-bottom: 1px solid #ddd;
}
.whatsapp-float {
position: fixed;
bottom: 20px;
right: 20px;
background-color: #25d366;
color: white;
padding: 15px 20px;
border-radius: 50px;
text-decoration: none;
font-weight: bold;
box-shadow: 0 4px 10px rgba(0,0,0,0.3);
z-index: 1000;
}

.whatsapp-float:hover {
background-color: #1ebe5d;
}
.services {
text-align: center;
}

.cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 20px;
margin-top: 30px;
}

.card {
background: #0b0b0b;
padding: 25px;
border-radius: 15px;
box-shadow: 0 10px 25px rgba(0,0,0,0.08);
transition: transform 0.3s, box-shadow 0.3s;
}

.card h3 {
color: hsl(223, 19%, 93%);
margin-bottom: 10px;
}

.card p {
font-size: 15px;
color: hsl(0, 14%, 96%);
}

.card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 35px #f0efefdf;
}

/* ===== PREMIUM HERO ===== */
.hero {
background-image: url("images/gold.jpg"); /* CAMBIA al nombre real de tu foto */
background-size: cover;
background-position: center;
background-repeat: no-repeat;
color: white;
text-align: center;
padding: 140px 20px;
}

.hero-overlay {
max-width: 900px;
margin: 0 auto;
background: rgba(0,0,0,0.55);
padding: 60px 25px;
border-radius: 24px;
backdrop-filter: blur(2px);
}

.hero h1 {
font-size: 44px;
margin: 0 0 10px 0;
letter-spacing: 1px;
}

.hero p {
font-size: 18px;
line-height: 1.5;
margin: 0 auto 25px auto;
max-width: 750px;
opacity: 0.95;
}

.hero-buttons {
display: flex;
gap: 14px;
justify-content: center;
flex-wrap: wrap;
margin-top: 10px;
}

.btn-primary, .btn-secondary {
display: inline-block;
padding: 14px 22px;
border-radius: 999px;
text-decoration: none;
font-weight: bold;
transition: transform 0.2s, opacity 0.2s;
}

.btn-primary {
background: #25d366;
color: white;
}

.btn-secondary {
background: rgba(255,255,255,0.18);
color: white;
border: 1px solid rgba(255,255,255,0.45);
}

.btn-primary:hover, .btn-secondary:hover {
transform: translateY(-2px);
opacity: 0.95;
}

/* ===== Mejor espaciado general ===== */
section {
max-width: 1100px;
margin: 25px auto;
}
.logo {
width: 260px; /* tamaño ideal para logos horizontales */
max-width: 60vw; /* se ajusta en pantallas pequeñas */
height: auto;
display: block;
margin: 0 auto 20px auto;
border-radius: 10px; /* suaviza esquinas */
box-shadow: 0 6px 20px rgba(0,0,0,0.45); /* sombra premium */
}
/* Solo mostrar Call Now en móvil */
.call-btn { display: none; }

@media (max-width: 768px) {
.call-btn { display: inline-block; }
}

