/* ===========================
   ESTILOS BASE
=========================== */

body {
    background: #FFFFFF;
    color: #1A1A1A;
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

/* CONTENEDOR PRINCIPAL */
.main-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}

/* HERO */
.hero-top {
    text-align: center;
    padding-top: 24px;
}

.hero-top h1 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* LOGO */
.logo-v-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.logo-v {
    height: 80px;
    transform: rotate(180deg);
    display: block;
    max-width: 100%;
}

/* FILA: BÚSQUEDA + MAIL */
.search-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

/* BARRA DE BÚSQUEDA */
.search-container {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #D0D0D0;
    border-radius: 12px;
    padding: 8px 12px;
    width: 100%;
    max-width: 420px;
}

.search-input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    background: transparent;
}

/* BOTÓN MAIL */
.mail-button {
    padding: 9px 16px;
    border-radius: 12px;
    border: 1px solid #D0D0D0;
    background: #FFFFFF;
    color: #1A1A1A;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* LÍNEA GRIS */
.separator-line {
    margin: 40px auto;
    width: 90%;
    max-width: 1450px;
    height: 1px;
    background: #C4C4C4;
}

/* ===========================
   CAJAS SUPERIORES
=========================== */

.top-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

/* CAJAS */
.box {
    background: #FFFFFF;
    border: 1px solid #D0D0D0;
    border-radius: 14px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #1A1A1A;
    cursor: pointer;
    transition: 0.2s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 300px;
    text-align: center;
}

/* GRUPO */
.box-group {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* ÍCONOS */
.icon-outside {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.4;
    top: -40px;
}

.icon-left-outside {
    left: -10px;
}

.icon-right-outside {
    right: -10px;
}

/* BURBUJAS */
.hidden-menu {
    display: none;
    margin-top: 10px;
    border: 1px solid #D0D0D0;
    border-radius: 10px;
    padding: 12px 16px;
    background: #FFFFFF;
    width: 90%;
    max-width: none;
    text-align: center;
}

.menu-item {
    background: #FFFFFF;
    border: 1px solid #D0D0D0;
    border-radius: 10px;
    padding: 6px 12px;
    margin-bottom: 8px;
    font-size: 14px;
    width: 100%;
}

/* ===========================
   ACERCA DE NOSOTROS
=========================== */

.section-title {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 20px;
    text-align: center;
}

.about-bubbles {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* BURBUJAS */
.about-bubble {
    background: #FFFFFF;
    border: 1px solid #D0D0D0;
    border-radius: 14px;
    padding: 20px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* BURBUJA INTERNA */
.inner-bubble {
    background: #FFFFFF;
    border: 1px solid #D0D0D0;
    border-radius: 12px;
    padding: 16px;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
}

/* DOS COLUMNAS */
.two-columns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.left-column,
.right-column {
    width: 100%;
}

/* MINI BURBUJAS */
.mini-bubble {
    background: #FFFFFF;
    border: 1px solid #D0D0D0;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 14px;
    margin-bottom: 8px;
}

/* BURBUJA DERECHA */
.right-bubble {
    background: #FFFFFF;
    border: 1px solid #D0D0D0;
    border-radius: 12px;
    padding: 14px;
    font-size: 14px;
    line-height: 1.5;
}

/* ===========================
   CONTACTO
=========================== */

.contact-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0 80px;
    flex-wrap: wrap;
}

.contact-box {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 20px;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

/* Evitar que el texto se salga */
.contact-box p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* ===========================
   MEDIA QUERIES (RESPONSIVE)
=========================== */

@media (max-width: 768px) {

    .hero-top h1 {
        font-size: 18px;
        padding: 0 10px;
    }

    .top-boxes {
        gap: 12px;
    }

    .box {
        max-width: 100%;
    }

    .icon-outside {
        display: none;
    }

    .about-bubbles {
        gap: 20px;
    }

    .about-bubble {
        max-width: 100%;
    }

    .two-columns {
        flex-direction: column;
    }

    .contact-section {
        gap: 16px;
    }

    .contact-box {
        width: 100%;
        max-width: none;
    }
}
