/* Created by
Calbert 72 multisectorial
www.calbert72.com
Contact: +240 222 176 082
Email: info@calbert72.com / cbt72info@gmail.com
©TODOS LOS DERECHOS RESERVADOS 
G-NOB WEB -2023/2025

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */


/* Hero section */
.hero {
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.774), rgba(0, 0, 0, 0.5)), url('../img/48.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.hero-content {
    max-width: 100%;
    text-align: center;
    padding-right: 0;
    margin: 0;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2rem;
}

.about-section {
    padding-top: 4rem;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-story {
    margin-bottom: 4rem;
    text-align: center;
}

.about-story h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

/* SECCION DE INFORMACIÓN DEL ABOUT-SECTION */
.fichas{
    text-decoration: none;
    color: #4776E6;
    font-weight: 700;
}

.fichas:hover{
    color: #fd1d1d;
    text-decoration: underline;
}


.values-section {
    margin-bottom: 4rem;
}

.values-section h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.value-card i {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #fd1d1d, #4776E6, #3a1c71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-section {
    margin-bottom: 4rem;
}

.team-section h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.team-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid;
    border-image: linear-gradient(45deg, #fd1d1d, #4776E6, #3a1c71);
    border-image-slice: 1;
}

.team-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-card p {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.team-contact {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(45deg, #fd1d1d, #4776E6, #3a1c71);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s;
}

.team-contact:hover {
    transform: scale(1.05);
    background: linear-gradient(45deg, #3a1c71, #4776E6, #fd1d1d);
}

.team-avatar img {
    transition: transform 0.3s;
}

.team-avatar:hover img {
    transform: scale(1.1);
}

.social-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #3a1c71, #4776E6);
    color: white;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    color: white;
    text-decoration: none;
    font-size: 2rem;
}

