/* ===== Reset básico ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== Body ===== */
body {
    background-color: #111; /* Negro más profundo */
    color: #fff;
    line-height: 1.6;
}

/* ===== Logo ===== */
.logo {
    display: block;
    margin: 30px auto 20px auto;
    max-width: 150px;
    height: auto;
    border-radius: 10px;
}

/* ===== Titulos ===== */
h1 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 10px;
    color: #fff;
}

h2, h3, h4 {
    text-align: center;
    margin: 15px 0;
}

h2.Services {
    font-size: 24px;
    color: #ffd700; /* Dorado */
}

h3 {
    font-size: 20px;
    color: #00bfff; /* Azul brillante */
}

h4 {
    color: #fff;
}

/* ===== Parrafos ===== */
p {
    max-width: 800px;
    margin: 15px auto;
    font-size: 16px;
    text-align: center;
    color: #ddd;
}

/* ===== Formulario ===== */
form {
    background-color: #1a1a1a;
    padding: 25px;
    margin: 30px auto;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #444;
    border-radius: 6px;
    background-color: #222;
    color: #fff;
    font-size: 16px;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #00bfff;
    box-shadow: 0 0 5px #00bfff;
}

.botones {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 5px;
}

.botones[type="submit"] {
    background-color: #00bfff;
    color: #fff;
}

.botones[type="submit"]:hover {
    background-color: #0094c6;
}

.botones[type="reset"] {
    background-color: #555;
    color: #fff;
}

.botones[type="reset"]:hover {
    background-color: #333;
}

/* ===== Seccion de servicios ===== */
.image-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.image-row img {
    max-width: 200px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.image-row img:hover {
    transform: scale(1.05);
}

/* ===== Footer ===== */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    background-color: #000;
    color: #aaa;
    font-size: 14px;
}

/* ===== Social media ===== */
.socialmedia {
    font-weight: bold;
    font-size: 18px;
    margin-top: 30px;
}

.social {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 10px;
}

.social a {
    color: #00bfff;
    text-decoration: none;
    font-weight: bold;
}

.social a:hover {
    text-decoration: underline;
}

/* ===== Mensajes especiales ===== */
.specialservice {
    font-size: 15px;
    color: #ffa500;
    margin-top: 10px;
    text-align: center;
}

.kindofservices {
    font-size: 28px;
    margin-top: 30px;
    color: #fff;
}
