:root {
    --primary-color: #007bff; /* Un azul vibrante */
    --secondary-color: #6c757d; /* Gris secundario */
    --background-dark: #ffffff;
    --background-light: #f8f9fa;
    --text-light: #212529;
    --text-dark: #343a40;
    --font-headings: 'Poppins', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-body);
    background-color: var(--background-dark);
    color: var(--text-light);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .display-5 {
    font-family: var(--font-headings);
    font-weight: 600;
}

a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: #4da3ff;
}

/* Header */
header.bg-white {
    background-color: var(--background-dark) !important;
    border-bottom: 3px solid var(--primary-color) !important;
    position: sticky;
    top: 0;
    z-index: 1020;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .nav-link {
    font-family: var(--font-headings);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    border-radius: 5px;
    margin: 0 5px;
}

header .nav-link:hover, .nav-link.active {
    background-color: rgba(0, 0, 0, 0.05);
}

.nav-link-whatsapp {
    color: #25D366 !important;
}

.nav-link-whatsapp:hover {
    background-color: rgba(0, 0, 0, 0.05) !important;
}

header .h3 {
     font-weight: 700;
}

/* Cards */
.card {
    background-color: var(--background-dark);
    border: 1px solid #dee2e6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card-title {
    color: var(--primary-color);
}

.card img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}


/* Formularios */
.form-control {
    background-color: var(--background-dark);
    color: var(--text-dark);
    border: 1px solid #ced4da;
}

.form-control:focus {
    background-color: var(--background-dark);
    color: var(--text-dark);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

.form-label {
    font-weight: 500;
}

/* Botones */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-family: var(--font-headings);
    font-weight: 600;
    padding: 12px 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
    transform: translateY(-2px);
}

/* Footer */
footer.bg-light {
    background-color: var(--background-light) !important;
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid #dee2e6;
}

/* Utilidades de Bootstrap sobreescritas */
.bg-light {
    background-color: var(--background-light) !important;
}

.rounded-3 {
    border-radius: 8px !important;
}

.text-bg-dark {
    background-color: #212529 !important;
}

.border {
    border-color: #dee2e6 !important;
}

/* Carousel */
#hero-carousel .carousel-item {
    max-height: 500px; /* Ajusta esta altura según tus necesidades */
}

#hero-carousel .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

/* Social Media Icons */
.social-icon {
    transition: transform 0.3s ease, filter 0.3s ease;
    display: inline-block;
    padding: 0 5px;
}

.social-icon:hover {
    transform: scale(1.2);
    filter: brightness(1.1);
}

.social-icon-facebook { color: #1877F2 !important; }
.social-icon-instagram { color: #E4405F !important; }
.social-icon-tiktok { color: #000000 !important; }
.social-icon-whatsapp { color: #25D366 !important; }
.social-icon-pinterest { color: #E60023 !important; }

.icon-lg {
    font-size: 2.8rem !important; /* El doble de lo que estaba antes aprox */
}

.icon-md {
    font-size: 1.8rem !important;
}

/* Drag and Drop Zone Premium Styles */
.drag-drop-zone {
    position: relative;
    border: 2px dashed #ced4da;
    border-radius: 8px;
    background-color: var(--background-light);
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    overflow: hidden;
}

.drag-drop-zone:hover {
    border-color: var(--primary-color);
    background-color: rgba(0, 123, 255, 0.02);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.drag-drop-zone.dragover {
    border-color: var(--primary-color);
    background-color: rgba(0, 123, 255, 0.08);
    border-style: solid;
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.15);
}

.drag-drop-zone .zone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    transition: color 0.3s ease;
}

.drag-drop-zone:hover .zone-content {
    color: var(--primary-color);
}

.drag-drop-zone .zone-content i {
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
    transition: transform 0.3s ease;
}

.drag-drop-zone:hover .zone-content i {
    transform: translateY(-3px);
}

.drag-drop-zone .preview-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.drag-drop-zone .preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drag-drop-zone .remove-preview-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 3;
    background-color: rgba(220, 53, 69, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.drag-drop-zone .remove-preview-btn:hover {
    background-color: rgba(220, 53, 69, 1);
    transform: scale(1.1);
}


