/**
 * Footer styles for Wasabi IGV Calculator
 */

/* Estilos del footer */
.footer-container {
    background: linear-gradient(135deg, #a10e0d 0%, #E01413 100%);
    color: #fff;
    width: 100%; /* Asegura que el fondo ocupe el ancho completo */
}

.footer-link {
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #f8b4b4;
    transform: translateX(3px);
}

.social-icon {
    transition: all 0.3s ease;
    color: #fff;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
}

/* Layout classes */
.container {
    width: 100%;
    max-width: 1140px; /* Reducido para hacer el contenido más angosto */
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 1200px) {
    .container {
        max-width: 960px; /* Tamaño medio para pantallas más pequeñas */
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px; /* Tamaño más pequeño para tablets */
    }
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gap-10 {
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.space-x-3 > * + * {
    margin-left: 0.75rem;
}

.space-x-5 > * + * {
    margin-left: 1.25rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.text-white {
    color: #fff;
}

.text-red-100 {
    color: #fee2e2;
}

.text-red-200 {
    color: #fecaca;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.font-bold {
    font-weight: 700;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mr-3 {
    margin-right: 0.75rem;
}

.mt-12 {
    margin-top: 3rem;
}

.pt-8 {
    padding-top: 2rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.leading-relaxed {
    line-height: 1.625;
}

.border-t {
    border-top-width: 1px;
}

.border-red-800 {
    border-color: #991b1b;
}

.text-center {
    text-align: center;
} 