/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #dbeafe 0%, #ffffff 50%, #f0fdfa 100%);
    min-height: 100vh;
}

.container {
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #2563eb 0%, #14b8a6 100%);
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    max-width: 64rem;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    text-align: center;
}

.logo-container {
    margin-bottom: 2rem;
}

.logo-circle {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease;
}

.logo-circle:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.875rem;
    font-weight: bold;
}

.company-name {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    transition: transform 0.3s ease;
}

.company-tagline {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.company-description {
    font-size: 1.125rem;
    opacity: 0.8;
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.7;
}

.hero-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4rem;
    background: linear-gradient(to top, #dbeafe, transparent);
}

/* Main Content */
.main-content {
    max-width: 32rem;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* About Section */
.about-section {
    margin-bottom: 3rem;
    text-align: center;
}

.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 1rem;
}

.about-text {
    color: #4b5563;
    line-height: 1.7;
    max-width: 36rem;
    margin: 0 auto;
}

/* Social Section */
.social-section {
    margin-bottom: 3rem;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .social-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .company-name {
        font-size: 4rem;
    }
    
    .company-tagline {
        font-size: 1.5rem;
    }
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.social-link:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.social-link i {
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
}

.social-link.instagram {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #7c3aed, #db2777);
}

.social-link.facebook {
    background: #2563eb;
}

.social-link.facebook:hover {
    background: #1d4ed8;
}

.social-link.twitter {
    background: #0ea5e9;
}

.social-link.twitter:hover {
    background: #0284c7;
}

.social-link.whatsapp {
    background: #10b981;
}

.social-link.whatsapp:hover {
    background: #059669;
}

/* Contact Section */
.contact-section {
    margin-bottom: 3rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.contact-link:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-link i {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-link:hover i {
    transform: scale(1.1);
}

.contact-info {
    flex-grow: 1;
	padding-left: 20px;
}

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

.contact-subtitle {
    font-size: 0.875rem;
    opacity: 0.9;
}

.contact-arrow {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.contact-link:hover .contact-arrow {
    background: rgba(255, 255, 255, 0.3);
}

.contact-link.email {
    background: #14b8a6;
}

.contact-link.email:hover {
    background: #0d9488;
}

.contact-link.phone {
    background: #f97316;
}

.contact-link.phone:hover {
    background: #ea580c;
}

.contact-link.website {
    background: #3b82f6;
}

.contact-link.website:hover {
    background: #2563eb;
}

.contact-link.location {
    background: #ef4444;
}

.contact-link.location:hover {
    background: #dc2626;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #14b8a6, #2563eb);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.newsletter-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.newsletter-description {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 24rem;
    margin: 0 auto;
    display: flex;
    gap: 0.75rem;
}

.email-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: none;
    color: #1f2937;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.email-input:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.email-input::placeholder {
    color: #6b7280;
}

.subscribe-btn {
    background: white;
    color: #14b8a6;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background: #f3f4f6;
    transform: translateY(-1px);
}

.subscribe-btn:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    text-align: center;
    color: #6b7280;
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
}

.footer-copyright {
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 640px) {
    .hero-content {
        padding: 3rem 1rem;
    }
    
    .company-name {
        font-size: 2.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .main-content {
        padding: 2rem 1rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Success Message */
.success-message {
    background: #10b981;
    color: white;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.success-message.show {
    opacity: 1;
    transform: translateY(0);
}