/* Amica 20 - Main Stylesheet */

:root {
    --primary: #0F7BBC;
    --primary-dark: #0c5f96;
    --secondary: #00a3e0;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #e8f5fc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.main-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle, rgba(15, 123, 188, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.content-container {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease-out;
}

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

.logo-container {
    margin-bottom: 3rem;
    animation: fadeIn 1s ease-out 0.2s backwards;
}

.logo {
    display: inline-block;
}

.logo img {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(15, 123, 188, 0.15));
}

.tagline {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
    font-weight: 400;
    animation: fadeIn 1s ease-out 0.4s backwards;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.75rem 2rem;
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 123, 188, 0.08);
    animation: fadeIn 1s ease-out backwards;
}

.btn:nth-child(1) { animation-delay: 0.5s; }
.btn:nth-child(2) { animation-delay: 0.6s; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(15, 123, 188, 0.3);
}

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

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(15, 123, 188, 0.2);
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.btn-title {
    font-size: 1.125rem;
    font-weight: 600;
}

.btn-description {
    font-size: 0.875rem;
    opacity: 0.8;
    font-weight: 400;
}

.btn-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 0.75rem;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .logo img {
        max-width: 300px;
    }

    .tagline {
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }

    .btn {
        padding: 1.5rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        line-height: 2;
    }

    .footer-bottom a {
        display: inline-block;
        margin: 0.25rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        max-width: 250px;
    }

    .btn-content {
        align-items: center;
        text-align: center;
    }

    .btn {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .btn-icon {
        transform: rotate(90deg);
    }

    .btn:hover .btn-icon {
        transform: rotate(90deg) translateX(5px);
    }
}