/* ===================== RESET ===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f5f5f5;
    color: #222;
}

/* ===================== HEADER ===================== */

.header {
    width: 100%;
    background: #0b0b0b;
    color: white;
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo img {
    height: 55px;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.navbar a:hover {
    color: #d4af37;
}

.menu-icono {
    width: 30px;
    cursor: pointer;
    display: none;
}

/* ===================== HERO ===================== */

.header-content {
    text-align: center;
    padding: 80px 20px;
}

.header-txt h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.btn-1 {
    background: #d4af37;
    color: black;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 6px;
}

/* ===================== SECCIONES ===================== */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.general {
    padding: 60px 0;
    text-align: center;
}

.general-content {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    width: 300px;
    height: 180px;
    background: #222;
    border-radius: 10px;
    overflow: hidden;
}

.card h3 {
    color: white;
}

/* ===================== INFO ===================== */

.info-1 {
    background: white;
    padding: 60px 0;
}

.info-circle {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.circle-txt {
    width: 300px;
    background: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.circle-icon span {
    font-size: 40px;
    color: #d4af37;
}

.leer-mas {
    display: inline-block;
    margin-top: 10px;
    color: #d4af37;
    text-decoration: none;
}

/* ===================== CERTIFICACIONES ===================== */

.certificaciones-banner {
    position: relative;
    padding: 60px 0;
    background: #111;
    color: white;
    text-align: center;
}

.certificaciones-img {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.certificaciones-img img {
    height: 80px;
}

/* ===================== CONTACTO ===================== */

.contact-section {
    padding: 60px 0;
}

.modern-contact-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* HEADER CONTACTO */

.contact-header-banner {
    background: #0b0b0b;
    color: white;
    padding: 20px;
}

.contact-logo {
    height: 60px;
}

/* BODY */

.contact-body-wrapper {
    display: flex;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

/* INFO PANEL */

.contact-info-panel {
    flex: 1;
    min-width: 300px;
}

.info-card {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
}

.info-title {
    margin-bottom: 15px;
}

/* CONTACT METHODS */

.contact-method {
    margin-bottom: 20px;
}

.method-icon {
    font-size: 20px;
    margin-bottom: 5px;
}

.phone-number a,
.email-address a,
.map-link {
    color: #0b0b0b;
    text-decoration: none;
}

.phone-number a:hover,
.email-address a:hover,
.map-link:hover {
    color: #d4af37;
}

/* FORM */

.modern-contact-form {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* FULL WIDTH */

.full-width {
    grid-column: span 2;
}

/* BUTTON */

.submit-button {
    width: 100%;
    padding: 12px;
    background: #d4af37;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.submit-button:hover {
    background: #b8912f;
}

/* MESSAGE */

#form-message {
    text-align: center;
    font-weight: bold;
}

/* ===================== FOOTER ===================== */

.main-footer {
    background: #0b0b0b;
    color: white;
    text-align: center;
    padding: 20px;
}

.social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 20px;
}

.social-icons a:hover {
    color: #d4af37;
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 768px) {

    .navbar ul {
        flex-direction: column;
        display: none;
    }

    #menu:checked ~ .navbar ul {
        display: flex;
    }

    .menu-icono {
        display: block;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }

    .contact-body-wrapper {
        flex-direction: column;
    }
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe5d;
}