/* COLORES DE LA WEB:
   --primario:      #4e342e (Marrón Profundo)
   --acento:        #7cb342 (Verde Esperanza)
   --acento-suave:  #f1f8e9 (Verde Menta Suave)
   --blanco:        #ffffff (Blanco Puro)
   --danger:        #e63946 (Rojo Corazón)
   --bg-light:      #f8f9fa (Gris Bootstrap Light)
   --gradiente:     #689f38 (Verde Bosque para degradados)
   --texto:         #2d2d2d (Gris Carbón para lectura)
*/

:root {
    --primario: #4e342e;
    --acento: #7cb342;
    --texto: #2d2d2d;
    --blanco: #ffffff;
    --transicion: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--texto);
    background-color: var(--blanco);
    overflow-x: hidden;
}

.main-nav {
    background-color: var(--acento) !important;
    transition: all 0.4s ease-in-out;
}

.main-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    transition: var(--transicion);
}

.main-nav .nav-link:hover {
    color: var(--blanco) !important;
    transform: translateY(-2px);
}

.nav-visible {
    display: flex !important;
    animation: slideInDown 0.5s forwards;
}

@keyframes slideInDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

#inicio {
    min-height: 500px;
}

header.bg-acento {
    background: linear-gradient(135deg, var(--acento) 0%, #689f38 100%) !important;
}

.video-header-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shadow-text {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.85) !important;
}

.btn-white-custom {
    background-color: #ffffff !important;
    color: var(--acento) !important;
    border: none;
    transition: var(--transicion);
}

.btn-white-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
    background-color: #f8f9fa !important;
}

.bi-heart-fill {
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.text-brown {
    color: var(--primario) !important;
}

.border-acento {
    border-color: var(--acento) !important;
}

.lh-lg {
    line-height: 1.8 !important;
}

.video-wrapper {
    background-color: var(--blanco);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.hover-lift {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 2px solid transparent !important;
}

.hover-lift:hover {
    transform: translateY(-10px);
    border-color: var(--acento) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

.hover-lift .card-img-top {
    transition: filter 0.3s ease;
}

.hover-lift:hover .card-img-top {
    filter: brightness(1.05);
}

.bg-acento-suave {
    background-color: #f1f8e9 !important;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.video-container {
    background-color: var(--blanco);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.accordion-item {
    border: 1px solid rgba(124, 179, 66, 0.1) !important;
}

.accordion-button:not(.collapsed) {
    color: var(--acento) !important;
    background-color: #ffffff !important;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.accordion-button:focus {
    border-color: var(--acento);
    box-shadow: 0 0 0 0.25rem rgba(124, 179, 66, 0.25);
}

.accordion-button::after {
    filter: sepia(1) saturate(5) hue-rotate(50deg);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s all ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.bg-acento {
    background-color: var(--acento) !important;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #ffffff !important;
    padding-left: 5px;
}

.footer-logo {
    max-height: 50px;
}

.vr {
    width: 1px;
    background-color: #000;
}

.hover-opacity-100:hover {
    opacity: 1 !important;
}

#btnScrollTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    width: 45px;
    height: 45px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transicion);
}

#btnScrollTop:hover {
    transform: translateY(-5px);
}

.fade-in-btn {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}