@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;600;700;800&display=swap');

:root {
    --primary-mint: #2ECC71;
    --primary-mint-dark: #1b9a5e;
    --primary-mint-light: #A3E4D7;
    --accent-turquoise: #00CED1;
    --accent-turquoise-dark: #008b8b;
    --accent-turquoise-rgb: 0, 206, 209;
    --accent-yellow: #FFE66D; /* Lighter golden-yellow requested */
    --accent-yellow-dark: #e6cb4c;
    --accent-yellow-light: #fff0a5;
    --accent-yellow-rgb: 255, 230, 109;
    --bg-light: #ffffff;
    --bg-light-alt: #ffffff; /* Pure white background requested */
    --border-glass: rgba(255, 230, 109, 0.35); /* Lighter yellow border */
    --text-dark: #2C3E50;
    --text-muted: #5F768D;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

#inicio {
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

#acerca {
    background: var(--bg-light);
}

#dondeestamos {
    background: var(--bg-light);
}

#escuchamos {
    background: var(--bg-light);
}

#portafolio {
    background: var(--bg-light);
}

#contacto {
    background: var(--bg-light);
}

#redes {
    background: var(--bg-light);
    padding: 40px 0;
}

/* Section Title Styling */
.section-title {
    font-size: 2.8rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title span {
    color: var(--accent-yellow-dark);
    text-shadow: 0 0 10px rgba(var(--accent-yellow-rgb), 0.2);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-turquoise), var(--primary-mint));
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Premium Light Cards */
.card-premium, .form-container {
    background: #ffffff;
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: var(--text-dark);
}

.card-premium:hover, .form-container:hover {
    transform: translateY(-8px);
    border-color: var(--accent-yellow);
    box-shadow: 0 12px 40px rgba(255, 230, 109, 0.25);
}

/* Portafolio specific cards styled like card-premium */
.portfolio-card {
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border-glass);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-yellow);
    box-shadow: 0 12px 40px rgba(255, 230, 109, 0.25);
}

.portfolio-card .card-img-top {
    height: 240px;
    object-fit: cover;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    border-bottom: 2px solid var(--accent-yellow);
}

.portfolio-card .card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portfolio-card .card-title {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.portfolio-card .card-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Buttons */
.btn-custom-mint {
    background: linear-gradient(135deg, var(--accent-turquoise-dark), var(--primary-mint-dark));
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 11px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 206, 209, 0.2);
}

.btn-custom-mint:hover {
    background: linear-gradient(135deg, var(--primary-mint-dark), var(--accent-turquoise-dark));
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.3);
    transform: translateY(-2px);
}

.btn-custom-turquoise {
    background: transparent;
    color: var(--accent-turquoise-dark);
    border: 2px solid var(--accent-turquoise-dark);
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-custom-turquoise:hover {
    background: linear-gradient(135deg, var(--accent-turquoise), var(--primary-mint));
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 206, 209, 0.25);
    transform: translateY(-2px);
}

/* Inputs & Form Styling */
.form-label {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 8px;
}

.form-control, .form-select {
    background-color: #fafdfc;
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    color: var(--text-dark) !important;
    padding: 12px 18px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    background-color: #ffffff;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 10px rgba(255, 230, 109, 0.3);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

/* Carousel Overlay & Background Styling */
.carousel, .carousel-inner, .carousel-item, .carousel-image {
    height: 100vh;
    width: 100vw;
}

.carousel-image {
    object-fit: cover;
    object-position: center top; /* Evita que se recorte la cabeza en pantallas panorámicas */
    width: 100%;
    height: 100%;
    filter: brightness(0.7) contrast(1.05);
}

/* Estilos específicos para la primera foto del carrusel (más centrada, alejar cara) */
.carousel-image-main {
    object-position: center 20% !important; /* Centra más la cara */
}

@media (min-width: 992px) {
    .carousel-item-main {
        background-image: url('../img/adriana01.jpeg?v=3');
        background-size: cover;
        background-position: center;
        position: relative;
        overflow: hidden;
    }
    
    .carousel-item-main::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: inherit;
        filter: blur(20px) brightness(0.85);
        transform: scale(1.05); /* Evita bordes blancos por el desenfoque */
        z-index: 1;
    }
    
    .carousel-image-main {
        position: relative;
        z-index: 2;
        object-fit: contain !important;
        width: auto !important;
        max-width: 90% !important;
        height: 100% !important;
        margin: 0 auto;
    }
}

.jumbotron-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center; /* Centrado en móviles */
    align-items: center;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.6) 100%), linear-gradient(135deg, rgba(0, 206, 209, 0.05), rgba(46, 204, 113, 0.05));
    z-index: 2;
    padding: 20px;
}

.jumbotron-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 230, 109, 0.45);
    border-radius: 32px;
    padding: 40px 30px;
    max-width: 480px; /* Ancho adecuado para el lateral */
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    animation: fadeInScale 1s ease-out;
}

@media (min-width: 768px) {
    .jumbotron-overlay {
        justify-content: flex-start; /* Se alinea a la izquierda en desktop */
        align-items: flex-start; /* Se alinea arriba en desktop */
        padding-left: 20px; /* Muy cerca del margen izquierdo, 20px */
        padding-top: 180px; /* Más abajo, dejando espacio libre con el navbar */
    }
    .jumbotron-overlay .container {
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
        width: auto !important;
    }
    .jumbotron-glass {
        margin: 0; /* Quita el centrado automático */
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Image framing */
.img-framed {
    border-radius: 30px;
    border: 3px solid var(--accent-yellow);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.img-framed:hover {
    border-color: var(--primary-mint);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.15);
    transform: scale(1.02);
}

/* Map frame */
.map-container {
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid var(--border-glass);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.map-container:hover {
    border-color: var(--accent-yellow);
    box-shadow: 0 15px 40px rgba(255, 230, 109, 0.2);
}

/* Custom badges */
.badge-custom {
    background-color: rgba(255, 230, 109, 0.08);
    color: var(--accent-yellow-dark);
    border: 1px solid rgba(255, 230, 109, 0.3);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Info Box */
.info-box-custom {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), #fafdfc);
    color: var(--text-dark);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
    border-left: 5px solid var(--accent-yellow);
    height: 100%;
}

.info-box-custom h5 {
    color: var(--accent-yellow-dark);
    font-weight: 700;
    margin-bottom: 15px;
}