/*
* GLOBAL Equipamientos - Estilos Principales
* Paleta de colores:
* - Rojo: #D62828
* - Burdeos: #8C1C13
* - Negro: #1A1A1A
* - Gris oscuro: #333333
* - Gris medio: #707070
* - Gris claro: #E5E5E5
* - Blanco: #FFFFFF
*/

/* ===== RESET & GENERAL STYLES ===== */
:root {
    --color-red: #D62828;
    --color-burgundy: #8C1C13;
    --color-black: #1A1A1A;
    --color-dark-gray: #333333;
    --color-medium-gray: #707070;
    --color-light-gray: #E5E5E5;
    --color-white: #FFFFFF;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.1);
    
    --transition: all 0.3s ease;
    --border-radius: 6px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark-gray);
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1rem;
}

a {
    color: var(--color-red);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-burgundy);
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--color-red);
    color: var(--color-white);
    border: 2px solid var(--color-red);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--color-burgundy);
    border-color: var(--color-burgundy);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--color-red);
    border: 2px solid var(--color-red);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--color-red);
    color: var(--color-white);
}

.section-title {
    position: relative;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-red);
}

section {
    padding: 5rem 0;
}

/* ===== HEADER ===== */
.site-header {
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: var(--color-black);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.5rem 1rem;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--color-red);
    transition: width 0.3s ease, left 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-item.active .nav-link::after {
    width: 100%;
    left: 0;
}

.navbar-nav .nav-item.active .nav-link {
    color: var(--color-red);
}

.contact-info {
    display: flex;
    align-items: center;
}

.contact-info-item {
    margin-left: 1.5rem;
    display: flex;
    align-items: center;
}

.contact-info-item i {
    color: var(--color-red);
    margin-right: 0.5rem;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    transition: all 300ms linear;
}

.navbar-toggler-icon span {
    width: 100%;
    height: 2px;
    display: block;
    position: absolute;
    background-color: var(--color-black);
    transition: var(--transition);
}

.navbar-toggler-icon span:nth-child(1) {
    top: 0;
}

.navbar-toggler-icon span:nth-child(2), 
.navbar-toggler-icon span:nth-child(3) {
    top: 7px;
}

.navbar-toggler-icon span:nth-child(4) {
    top: 14px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(1),
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(4) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(2) {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(3) {
    transform: rotate(-45deg);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-slide {
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(26,26,26,0.7) 0%, rgba(26,26,26,0.4) 100%);
}

.hero-content {
    position: relative;
    max-width: 600px;
    color: var(--color-white);
    padding: 2rem 0;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s 0.2s ease both;
}

.hero-content .btn {
    animation: fadeInUp 1s 0.4s ease both;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--color-white) !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--color-white);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--color-red);
    opacity: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    background-color: var(--color-light-gray);
}

.category-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    text-align: center;
    transition: var(--transition);
    display: block;
    box-shadow: var(--shadow-sm);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    color: initial;
}

.category-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background-color: var(--color-light-gray);
    color: var(--color-red);
    font-size: 1.5rem;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background-color: var(--color-red);
    color: var(--color-white);
}

.category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-black);
}

.category-card p {
    color: var(--color-medium-gray);
    margin-bottom: 0;
}

/* ===== FEATURED PRODUCTS SECTION ===== */
.featured-products {
    background-color: var(--color-white);
}

.product-card {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    background-color: var(--color-white);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-white);
    border-radius: 20px;
    z-index: 2;
    text-transform: uppercase;
}

.badge-nuevo {
    background-color: #28a745;
}

.badge-semi_nuevo {
    background-color: #ffc107;
    color: #212529;
}

.badge-usado {
    background-color: var(--color-dark-gray);
}

.product-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-light-gray);
}

.no-image i {
    font-size: 3rem;
    color: var(--color-medium-gray);
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1rem;
    line-height: 1.4;
    height: 2.8rem;
    overflow: hidden;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-title a {
    color: var(--color-black);
}

.product-title a:hover {
    color: var(--color-red);
}

.product-category, .product-code {
    font-size: 0.875rem;
    color: var(--color-medium-gray);
    margin-bottom: 0.25rem;
}

.product-action {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
}

.product-action .btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    flex: 1;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
    background-color: var(--color-light-gray);
}

.reason-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.reason-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background-color: var(--color-red);
    color: var(--color-white);
    font-size: 2rem;
}

.reason-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.reason-card p {
    color: var(--color-medium-gray);
    margin-bottom: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background-color: var(--color-burgundy);
    color: var(--color-white);
    position: relative;
    padding: 4rem 0;
    background-image: url('../img/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(140,28,19,0.9) 0%, rgba(214,40,40,0.9) 100%);
}

.cta-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-content .btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

/* ===== BRANDS SECTION ===== */
.brands-section {
    padding: 4rem 0;
    background-color: var(--color-white);
}

.brands-swiper {
    padding: 1rem 0;
}

.brands-swiper .swiper-slide {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: var(--transition);
}

.brands-swiper .swiper-slide:hover {
    opacity: 1;
}

.brands-swiper img {
    max-height: 80px;
    max-width: 80%;
    object-fit: contain;
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: var(--color-black);
    color: var(--color-light-gray);
    padding: 4rem 0 0;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1.5rem;
}

.footer-about p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-red);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-light-gray);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-white);
    opacity: 1;
    padding-left: 5px;
}

.contact-info-footer {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-footer li {
    margin-bottom: 1rem;
    display: flex;
}

.contact-info-footer i {
    color: var(--color-red);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    color: var(--color-white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--color-red);
    color: var(--color-white);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer-bottom p {
    margin-bottom: 0;
    opacity: 0.7;
}

/* ===== CHATBOT ===== */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.chatbot-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-red);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.chatbot-button:hover {
    background-color: var(--color-burgundy);
    transform: scale(1.05);
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background-color: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chatbot-window.active {
    display: flex;
}

.chatbot-header {
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header h3 {
    margin: 0;
    color: var(--color-white);
    font-size: 1.1rem;
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    font-size: 1.2rem;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.message {
    margin-bottom: 15px;
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 18px;
    position: relative;
    clear: both;
}

.message-bot {
    background-color: var(--color-light-gray);
    color: var(--color-dark-gray);
    float: left;
    border-bottom-left-radius: 5px;
}

.message-user {
    background-color: var(--color-red);
    color: var(--color-white);
    float: right;
    border-bottom-right-radius: 5px;
}

.chatbot-input {
    border-top: 1px solid var(--color-light-gray);
    padding: 15px;
    display: flex;
}

.chatbot-input input {
    flex: 1;
    border: none;
    padding: 10px 15px;
    border-radius: 20px;
    background-color: var(--color-light-gray);
}

.chatbot-input input:focus {
    outline: none;
}

.chatbot-input button {
    background-color: var(--color-red);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.chatbot-input button:hover {
    background-color: var(--color-burgundy);
}

/* ===== PRODUCTOS PAGE ===== */
.productos-header {
    background-color: var(--color-light-gray);
    padding: 4rem 0;
    position: relative;
}

.productos-header h1 {
    margin-bottom: 0;
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--color-red);
}

.filter-box {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.filter-box h5 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.filter-box h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-red);
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-list li {
    margin-bottom: 0.5rem;
}

.filter-list a {
    color: var(--color-dark-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.filter-list a:hover {
    color: var(--color-red);
}

.filter-list a span {
    background-color: var(--color-light-gray);
    color: var(--color-medium-gray);
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
}

.filter-box .form-check {
    margin-bottom: 0.5rem;
}

.pagination {
    margin-top: 2rem;
    justify-content: center;
}

.page-link {
    color: var(--color-dark-gray);
    border: none;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: var(--border-radius);
}

.page-item.active .page-link {
    background-color: var(--color-red);
    color: var(--color-white);
}

.page-link:hover {
    background-color: var(--color-light-gray);
    color: var(--color-red);
}

/* ===== PRODUCTO DETALLE PAGE ===== */
.producto-detalle {
    padding: 4rem 0;
}

.producto-gallery {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.producto-main-image {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-light-gray);
}

.producto-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.producto-thumbnails {
    display: flex;
    margin-top: 1rem;
    gap: 1rem;
}

.producto-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.producto-thumbnail:hover, .producto-thumbnail.active {
    opacity: 1;
}

.producto-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.producto-info h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.producto-meta {
    margin-bottom: 1.5rem;
}

.producto-meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.producto-meta-item i {
    color: var(--color-red);
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

.producto-description {
    margin-bottom: 2rem;
}

.producto-specs {
    background-color: var(--color-light-gray);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.specs-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.specs-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-red);
}

.specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specs-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

.specs-list li:last-child {
    border-bottom: none;
}

.specs-label {
    font-weight: 500;
    color: var(--color-dark-gray);
}

.specs-value {
    color: var(--color-medium-gray);
}

.producto-cta {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.share-button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-light-gray);
    color: var(--color-medium-gray);
    border-radius: 50%;
    transition: var(--transition);
}

.share-button:hover {
    background-color: var(--color-red);
    color: var(--color-white);
}

.related-products {
    margin-top: 4rem;
}

/* ===== NOSOTROS PAGE ===== */
.nosotros-section {
    padding: 5rem 0;
}

.nosotros-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.nosotros-content h2 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.nosotros-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--color-red);
}

.nosotros-content p {
    margin-bottom: 1.5rem;
}

.mission-vision {
    background-color: var(--color-light-gray);
    padding: 5rem 0;
}

.mission-card, .vision-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.mission-card h3, .vision-card h3 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.mission-card h3::after, .vision-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-red);
}

/* ===== CONTACTO PAGE ===== */
.contacto-section {
    padding: 5rem 0;
}

.contacto-info {
    background-color: var(--color-burgundy);
    color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    height: 100%;
}

.contacto-info h3 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.contacto-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-white);
}

.contacto-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.contacto-item i {
    margin-right: 1rem;
    font-size: 1.5rem;
}

.contacto-item h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contacto-item p {
    margin-bottom: 0;
    opacity: 0.8;
}

.contacto-form {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.contacto-form h3 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.contacto-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-red);
}

.contacto-form .form-control {
    border: 1px solid var(--color-light-gray);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
}

.contacto-form .form-control:focus {
    border-color: var(--color-red);
    box-shadow: none;
}

.map-container {
    height: 450px;
    overflow: hidden;
    border-radius: var(--border-radius);
    margin-top: 4rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.fade-in-up {
    animation: fadeInUp 1s ease;
}

.fade-in-left {
    animation: fadeInLeft 1s ease;
}

.fade-in-right {
    animation: fadeInRight 1s ease;
}
