/* Estilos personalizados para CSG RAK */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@600&display=swap');

body {
    font-family: 'Inter', system_ui, sans-serif;
}

.heading-font {
    font-family: 'Poppins', system_ui, sans-serif;
    font-weight: 600;
}

.nav-link {
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #0EA5E9;
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #0EA5E9, #0284C8);
    border-radius: 3px;
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.project-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card img {
    transition: transform 0.4s ease;
}

.project-card:hover img {
    transform: scale(1.08);
}

.modal {
    animation: fadeInScale 0.3s ease forwards;
}

.floating-whatsapp {
    animation: bounce 2s infinite;
}

.brand-logo {
    transition: all 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}
/* === Foto del Fundador - Control de posición y escala === */
.founder-photo-container {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;           /* Mantiene la proporción y recorta */
    object-position: center 15%; /* ← Mueve la foto verticalmente. Ajusta este valor */
    transform: scale(1);      /* ← Escala la foto (1.0 = tamaño normal, 1.15 = 15% más grande) */
    transition: transform 0.4s ease;
}