/* Reset and Base Styles */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 60px 20px;
    text-align: center;
    background-color: #f8f9fa;
}

.main-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.main-content p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer Styles */
.footer {
    background-color: #2c2c2c;
    color: #ffffff;
    position: relative;
    padding : 0
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 50px 0 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Newsletter Section */
.newsletter-column {
    max-width: 280px;
}

.newsletter-description {
    color: #b8b8b8;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    background-color: #404040;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #555;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 14px;
    outline: none;
}

.newsletter-input::placeholder {
    color: #888;
}

.newsletter-button {
    background-color: #6c757d;
    border: none;
    padding: 12px 16px;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-button:hover {
    background-color: #5a6268;
}

.newsletter-button i {
    font-size: 14px;
}

/* Social Media Section */
.social-column {
    max-width: 250px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icon.facebook {
    background-color: #4267B2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
}

.social-icon.youtube {
    background-color: #FF0000;
}

.social-icon.twitter {
    background-color: #1DA1F2;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* App Section */
.app-section {
    margin-top: 20px;
}

.app-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.app-subtitle {
    color: #b8b8b8;
    font-size: 12px;
    margin-bottom: 15px;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app-button {
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.app-button:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.app-button img {
    width: 120px;
    height: auto;
    border-radius: 4px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #404040;
    padding: 20px 0;
}

.copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #888;
    gap: 6px;
}

.copyright-icon {
    font-size: 14px;
    color: #aaa;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    border-radius: 50%;
    text-decoration: none;
    color: #ffffff;
    font-size: 24px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-button a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .newsletter-column,
    .social-column {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0 30px;
    }

    .footer-container {
        padding: 0 16px;
    }

    .main-content {
        padding: 40px 16px;
    }

    .main-content h1 {
        font-size: 2rem;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .app-buttons {
        flex-direction: row;
        gap: 12px;
    }

    .app-button img {
        width: 110px;
    }

    .whatsapp-button {
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-button a {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 30px;
        padding: 30px 0 20px;
    }

    .footer-title {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .newsletter-description {
        font-size: 13px;
    }

    .newsletter-input {
        font-size: 13px;
        padding: 10px 14px;
    }

    .newsletter-button {
        padding: 10px 14px;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .app-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .app-button img {
        width: 100px;
    }

    .copyright {
        font-size: 11px;
        text-align: center;
        line-height: 1.4;
    }

    .main-content h1 {
        font-size: 1.75rem;
    }

    .main-content p {
        font-size: 1rem;
    }
}

/* Additional refinements for very small screens */
@media (max-width: 360px) {
    .footer-container {
        padding: 0 12px;
    }

    .app-button img {
        width: 90px;
    }

    .social-icons {
        gap: 10px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-button {
        align-self: stretch;
    }
}

/* Print styles */
@media print {
    .whatsapp-button {
        display: none;
    }

    .footer {
        background-color: transparent !important;
        color: #000 !important;
    }

    .footer-links a {
        color: #000 !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .footer {
        border-top: 2px solid #fff;
    }

    .footer-links a {
        color: #fff;
    }

    .newsletter-form {
        border: 2px solid #fff;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
}
