/* ========================================
   SECCIONES HERO
   ======================================== */

.hero {
    background: #ffffff;
    color: #333333;
    padding: 3rem 2rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 3rem;
    min-height: 400px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.hero h1 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #333333;
}

.hero p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: #666666;
}

.hero p strong {
    font-weight: 500;
    color: #333333;
}

.hero img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15),
                4px 4px 16px rgba(0, 0, 0, 0.2);
    display: block;
}

/* Layout de dos columnas para hero */
.hero {
    flex-wrap: wrap;
}

/* Columnas generadas automáticamente por h2 */
.hero-column {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
}

.hero-column h2 {
    margin-bottom: 1rem;
}

.hero-column p {
    margin-bottom: 1rem;
}

/* Ajustes para móviles en las columnas */
@media (max-width: 768px) {
    .hero-column p {
        margin-bottom: 0.75rem;
    }

    .hero-column h2 {
        margin-bottom: 0.75rem;
    }
}

.hero-column img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15),
                4px 4px 16px rgba(0, 0, 0, 0.2);
}

/* ========================================
   BOTONES (Estilo Filament)
   ======================================== */

/* Variables de colores corporativos */
:root {
    --corporate-orange: #fa6900;
    --corporate-orange-hover: #d85b04;
    --corporate-orange-light: #faa429;
    --corporate-orange-dark: #c44a00;
    --corporate-black: #000;
    --corporate-gray: #adadad;
    --corporate-gray-light: #e0e0e0;
    --corporate-gray-dark: #666;
    --corporate-gradient: linear-gradient(135deg, #faa429, #fa6900);
    --corporate-gradient-hover: linear-gradient(135deg, #fa6900, #d85b04);
    --corporate-gradient-black: linear-gradient(135deg, #333333, #000000);
    --corporate-gradient-dark: linear-gradient(135deg, #404040, #2d2d2d);
}

/* Botones principales */
.btn-primary {
    background: var(--corporate-gradient);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
}

.btn-primary:hover {
    background: var(--corporate-gradient-hover);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Botones secundarios */
.btn-secondary {
    background: #ffffff;
    color: var(--corporate-orange);
    border: 2px solid var(--corporate-orange);
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
}

.btn-secondary:hover {
    background: var(--corporate-orange);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Botones de WhatsApp específicos */
.btn-whatsapp {
    background: #25d366;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
}

.btn-whatsapp:hover {
    background: #128c7e;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Tamaños de botones */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Botones chicos para cards (sin degradado, fuente más chica) */
.btn-small,
.event-card-actions .btn,
.event-card-actions a.btn {
    background: var(--corporate-orange, #faa429);
    color: #ffffff;
    border: none;
    border-radius: 0;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
}

.btn-small:hover,
.event-card-actions .btn:hover,
.event-card-actions a.btn:hover {
    background: var(--corporate-orange-hover, #fa6900);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-small:active,
.event-card-actions .btn:active,
.event-card-actions a.btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

/* Botones en hero específicamente */
.hero-column .btn-primary,
.hero-column .btn-secondary,
.hero-column .btn-whatsapp {
    margin-top: 1rem;
    align-self: flex-start;
}

/* Responsive para botones */
@media (max-width: 768px) {
    .btn-primary,
    .btn-secondary,
    .btn-whatsapp {
        padding: 0.625rem 1.25rem;
        font-size: 0.938rem;
    }

    .btn-lg {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }

    .btn-xl {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .btn-primary,
    .btn-secondary,
    .btn-whatsapp {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   SECCIONES MULTI-COLUMNA
   ======================================== */

/* Secciones con gradiente naranja (propuesta) */
.propuesta {
    background: var(--corporate-gradient);
    color: #ffffff;
    padding: 4rem 0;
    margin: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border-radius: 0;
}

/* Secciones con gradiente negro (servicios) */
.servicios {
    background: radial-gradient(circle at top left, #111 40%, #222 80%, #000 100%);
    color: #ffffff;
    padding: 4rem 0;
    margin: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border-radius: 0;
}

/* Títulos y texto para secciones con gradiente */
.propuesta h1,
.servicios h1 {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.propuesta .multi-column-title,
.servicios .multi-column-title {
    color: #ffffff !important;
}

.propuesta .multi-column p,
.servicios .multi-column p {
    color: #ffffff !important;
}

.propuesta .multi-column p strong,
.servicios .multi-column p strong {
    color: #ffffff !important;
}

.propuesta h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Contenedor de columnas genérico */
.multi-columns-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Columnas genéricas */
.multi-column {
    flex: 1 1 300px;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

/* Servicios: forzar una columna por línea */
.servicios .multi-column {
    flex: 1 1 100%;
    max-width: 100%;
}

/* En móviles, quitar el mínimo de 300px */
@media (max-width: 768px) {
    .multi-column {
        flex: 1 1 auto;
    }
}

/* Títulos de columnas genéricos */
.multi-column-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.multi-column-title img {
    width: 60px;
    height: 60px;
    border-radius: 0;
    object-fit: contain;
    background: transparent;
    padding: 0;
    flex-shrink: 0;
}

/* Párrafos en columnas */
.multi-column p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #ffffff;
}

.multi-column p strong {
    font-weight: 600;
    color: #ffffff;
}

/* Layout de secciones multi-columna */
.propuesta {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Layout específico para servicios con cards */
.servicios {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.servicios h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

/* Cards de servicios */
.servicios .multi-column {
    background: transparent;
    border-radius: 0;
    padding: 2rem;
    margin-bottom: 2rem;
    border: none;
    backdrop-filter: none;
    transition: transform 0.3s ease;
}

.servicios .multi-column:hover {
    transform: none;
}

/* Separadores naranjas entre cards - ahora debajo del título */
.servicios .multi-column-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: var(--corporate-gradient);
    margin-top: 1rem;
    border-radius: 1px;
}

/* Títulos de servicios */
.servicios .multi-column-title {
    margin-bottom: 1.5rem;
    padding-bottom: 0;
    border-bottom: none;
    flex-direction: row;
    align-items: center;
}

.servicios .multi-column-title img {
    width: 80px;
    height: 80px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    order: -1;
    margin-right: 1rem;
}

/* Listas en servicios */
.servicios .multi-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.servicios .multi-column li {
    padding: 0.5rem 0;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
}

.servicios .multi-column li:first-child {
    padding-top: 0;
}

.servicios .multi-column li:last-child {
    padding-bottom: 0;
}

/* ========================================
   SECCIONES GENÉRICAS
   ======================================== */

.section {
    padding: 3rem 0;
    margin: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
}

.section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FA6900;
}

.section p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #333;
}

/* Layout de dos columnas genérico */
.two-columns {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.two-columns > * {
    flex: 1 1 300px;
}

.two-columns img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablets */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 1.5rem;
        margin: 0;
        margin-left: 0 !important;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.938rem;
    }

    .hero > p:has(img) {
        flex: 1 1 auto;
        order: -1; /* Imagen arriba en móvil */
    }

    .hero-column {
        flex: 1 1 auto;
        margin-bottom: 0.5rem;
    }

    .hero img, .hero-column img {
        box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1),
                    2px 2px 8px rgba(0, 0, 0, 0.15);
    }

    .two-columns {
        flex-direction: column;
        gap: 2rem;
    }

    /* Secciones multi-columna responsive */
    .propuesta,
    .servicios {
        padding: 3rem 0;
    }

    .propuesta h1,
    .servicios h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .multi-columns-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }

    .multi-column-title {
        font-size: 1.25rem;
        gap: 0.75rem;
    }

    .multi-column-title img {
        width: 50px;
        height: 50px;
        padding: 0;
        border-radius: 0;
    }

    .servicios .multi-column-title img {
        width: 60px;
        height: 60px;
        border-radius: 0;
    }
}

/* Móviles */
@media (max-width: 480px) {
    .hero {
        padding: 1.5rem 1rem;
        margin: 0 -1rem;
        gap: 0.75rem;
    }

    .hero h1 {
        font-size: 1.375rem;
    }

    .hero p {
        font-size: 0.875rem;
    }

    /* Secciones multi-columna en móviles */
    .propuesta,
    .servicios {
        padding: 2rem 0;
    }

    .propuesta h1,
    .servicios h1 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .multi-columns-container {
        gap: 1rem;
        padding: 0 1rem;
    }

    .multi-column-title {
        font-size: 1.125rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }

    .multi-column-title img {
        width: 45px;
        height: 45px;
        padding: 0;
        border-radius: 0;
    }

    .servicios .multi-column-title {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }

    .servicios .multi-column-title img {
        width: 50px;
        height: 50px;
        padding: 0;
        border-radius: 0;
    }
}

/* Desktop grande */
@media (min-width: 1200px) {
    .hero {
        padding: 4rem 3rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.125rem;
    }
}
