/* Custom styles for VivaLuna Travel */

/* Quiénes Somos - Grid de Tarjetas */
.about-section {
    background-color: #f6f7f9;
    position: relative;
    overflow: hidden;
}

.about-header h6 {
    color: #5484A4;
    font-weight: 600;
    letter-spacing: 2px;
}

.about-header h1 {
    color: #334e68;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.about-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #5484A4, #8EB9C1);
    border-radius: 2px;
}

.about-intro-text {
    font-size: 1.1rem;
    color: #486581;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto;
}

.about-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(84, 132, 164, 0.04);
    border: 1px solid rgba(142, 185, 193, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(84, 132, 164, 0.12);
    border-color: rgba(142, 185, 193, 0.4);
}

.about-card-icon-wrapper {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(142, 185, 193, 0.1), rgba(84, 132, 164, 0.05));
    transition: all 0.4s ease;
    flex-shrink: 0;
    overflow: hidden;
}

.about-card:hover .about-card-icon-wrapper {
    transform: scale(1.08) rotate(3deg);
    background: linear-gradient(135deg, rgba(142, 185, 193, 0.15), rgba(84, 132, 164, 0.1));
}

.about-card-icon-wrapper img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    mix-blend-mode: multiply;
    border-radius: 50%;
}

.about-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #334e68;
    margin: 0;
}

.about-card p {
    color: #627d98;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

.about-tagline-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: #5484A4;
    letter-spacing: 0.5px;
    line-height: 1.4;
    border-left: 4px solid #8EB9C1;
    padding-left: 20px;
}

.about-tagline span {
    color: #8EB9C1;
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
}

/* Stats counter card update */
.about-stat-box {
    background: linear-gradient(135deg, #5484A4, #8EB9C1);
    border-radius: 16px;
    color: white !important;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(84, 132, 164, 0.15);
    transition: transform 0.3s ease;
}

.about-stat-box:hover {
    transform: scale(1.03);
}

.about-stat-box h3 {
    color: white !important;
    font-weight: 700;
    margin-bottom: 5px;
}

.about-stat-box h6 {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
