/* Definición de la Paleta Suave (Estilo Pastel/Natural) */
:root {
    /* Colores primarios */
    --color-green-dark: #2D5016;
    --color-green-medium: #3D6B1F;
    --bg-pink: #FFF5F7;
    
    /* Tipografía */
    --bs-body-color: #2D5016;
    --bs-font-family: 'Montserrat', sans-serif;
    --bs-primary: #2D5016;
    --bs-success: #2D5016;
}

/* Estilos Generales y Reseteo */
body {
    background-color: #FFF5F7;
    color: #2D5016;
}



/* TÍTULOS - Verde Seco */
h1, h2, h3, h4, h5, h6 {
    color: #2D5016 !important;
    font-weight: 600;
}

/* Sobreescribir colores de Bootstrap con la paleta suave */
.text-primary { 
    color: #2D5016 !important; 
}

.text-success { 
    color: #2D5016 !important; 
}

.btn-primary { 
    background-color: #2D5016; 
    border-color: #2D5016; 
}

.btn-primary:hover { 
    background-color: #3D6B1F; 
    border-color: #3D6B1F; 
}

.btn-success { 
    background-color: #2D5016; 
    border-color: #2D5016; 
}

.btn-success:hover { 
    background-color: #3D6B1F; 
    border-color: #3D6B1F; 
}

.btn-outline-success {
    color: #2D5016;
    border-color: #2D5016;
}

.btn-outline-success:hover {
    background-color: #2D5016;
    border-color: #2D5016;
    color: white;
}

.bg-light { 
    background-color: #f8f9fa !important; 
}

.bg-primary { 
    background-color: #2D5016 !important; 
}

.navbar-brand {
    color: #2D5016 !important;
}

a {
    color: #2D5016;
    text-decoration: none;
}

a:hover {
    color: #3D6B1F;
}

/* SECCIÓN HERO */
.hero {
    background: linear-gradient(to bottom, #FFF5F7, rgba(255, 245, 247, 0.8));
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

/* SECCIÓN SOBRE MÍ */
.foto-placeholder {
    width: 150px;
    height: 150px;
    background-color: #e6eef5; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* SECCIÓN SERVICIOS Y DUDAS */
.service-card {
    transition: transform 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-5px);
}

.duda-item {
    border-left: 5px solid #2D5016;
}

/* SECCIÓN CONTACTO */
.map-placeholder {
    height: 300px;
    background-color: #e6eef5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-list li {
    padding-bottom: 0.5rem;
}