/* ========================================
   DIRECCIÓN & MANAGEMENT SECTION
   Carrusel de dueños con efectos
   V3: Logos circulares (mismo estilo)
   ======================================== */

/* Sección principal */
.owners-section {
    background: #f5f5f5;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Título principal */
.owners-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 4rem;
    color: #1a1a1a;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
}

/* Container del carrusel */
.owners-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

/* Cada slide del owner */
.owner-slide {
    display: none;
    text-align: center;
    animation: fadeInSlide 0.6s ease-in-out;
}

.owner-slide.active {
    display: block;
}

/* Foto circular del owner (también para logos) */
.owner-photo-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    border: 4px solid #D4AF37;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

/* Efecto de iluminación dorada */
.owner-photo-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    animation: rotateGlow 8s linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* Foto dentro */
.owner-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 0;
}

/* Zoom 3D al hover */
.owner-photo-wrapper:hover {
    transform: scale(1.15) translateZ(50px);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.9),
                0 20px 40px rgba(0, 0, 0, 0.3);
    border-width: 5px;
}

.owner-photo-wrapper:hover .owner-photo {
    transform: scale(1.1);
}

/* ========================================
   ESTILOS ESPECIALES PARA LOGOS
   Mismo diseño circular, ajustes mínimos
   ======================================== */

/* Logo circular (usa las mismas clases) */
.logo-slide .logo-wrapper {
    /* Hereda todo de .owner-photo-wrapper */
    background: #ffffff; /* Fondo blanco para logos */
}

.logo-slide .brand-logo {
    /* Hereda de .owner-photo */
    object-fit: contain; /* Contain para logos (no cover) */
    /* Sin padding - ocupa todo el círculo */
}

/* Información del owner/logo */
.owner-info {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.owner-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: #D4AF37;
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.owner-position {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.owner-description {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    text-align: center;
}

/* Nombre de logos en negro */
.logo-slide .owner-name {
    color: #1a1a1a;
}

/* Position de logos en dorado */
.logo-slide .owner-position {
    color: #D4AF37;
    font-weight: 700;
}

/* Dots de navegación */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: #D4AF37;
    transform: scale(1.2);
}

.carousel-dot.active {
    background: #D4AF37;
    width: 30px;
    border-radius: 6px;
}

/* Animación de entrada */
@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animación de brillo rotativo */
@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    .owners-title {
        font-size: 2rem;
    }
    
    .owner-photo-wrapper {
        width: 240px;
        height: 240px;
    }
    
    .owner-name {
        font-size: 1.6rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .owners-section {
        padding: 4rem 0;
    }
    
    .owners-title {
        font-size: 1.75rem;
        letter-spacing: 2px;
        margin-bottom: 3rem;
    }
    
    .owner-photo-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .owner-photo-wrapper:hover {
        transform: scale(1.1);
    }
    
    .owner-name {
        font-size: 1.4rem;
    }
    
    .owner-position {
        font-size: 0.9rem;
    }
    
    .owner-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .owners-section {
        padding: 3rem 0;
    }
    
    .owners-title {
        font-size: 1.5rem;
    }
    
    .owner-photo-wrapper {
        width: 180px;
        height: 180px;
    }
    
    .owner-info {
        padding: 0 1rem;
    }
    
    .logo-slide .brand-logo {
        /* Sin padding en mobile tampoco */
    }
}

/* Smooth rendering */
.owner-photo-wrapper {
    backface-visibility: hidden;
    perspective: 1000px;
}
