/* Reset y Variables CSS */
:root {
    --primary-dark: #1F2D3D;
    --primary-light: #ffffff;
    --accent-color: #F9A825;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 3vw, 20px);
}

/* Utility Classes */
.highlight {
    color: var(--accent-color);
    font-weight: 600;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: clamp(30px, 5vw, 50px);
    color: var(--primary-dark);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h5 {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
}

h6 {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
}

/* Button Styles */
.contact-service-btn {
    background: linear-gradient(45deg, var(--accent-color) 0%, #ffb74d 100%);
    color: var(--primary-dark);
    padding: clamp(12px, 2vw, 15px) clamp(20px, 4vw, 30px);
    border: none;
    border-radius: clamp(20px, 3vw, 25px);
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 400;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: clamp(20px, 4vw, 30px);
    display: block;
    margin-left: auto;
    margin-right: auto;
    min-width: clamp(250px, 30vw, 300px);
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(249, 168, 37, 0.3);
}

.contact-service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.contact-service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(249, 168, 37, 0.4);
}

.contact-service-btn:hover::before {
    left: 100%;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-color) 0%, #ffb74d 100%);
    color: var(--primary-dark);
    padding: clamp(12px, 2vw, 15px) clamp(20px, 4vw, 30px);
    border-radius: clamp(20px, 3vw, 25px);
    text-decoration: none;
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.1rem);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: clamp(15px, 3vw, 20px);
    min-width: clamp(250px, 30vw, 300px);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(249, 168, 37, 0.3);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(249, 168, 37, 0.4);
}

.cta-btn:hover::before {
    left: 100%;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--primary-light);
    padding: clamp(40px, 8vw, 60px) 0 clamp(20px, 4vw, 30px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(25px, 5vw, 40px);
    margin-bottom: clamp(25px, 5vw, 40px);
    justify-content: center;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: clamp(15px, 3vw, 20px);
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

.footer-section p {
    margin-bottom: clamp(8px, 1.5vw, 10px);
    opacity: 0.9;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.social-buttons {
    display: flex;
    gap: clamp(10px, 2vw, 15px);
    flex-wrap: wrap;
    justify-content: center;
}

.social-btn {
    display: inline-block;
    padding: clamp(10px, 2vw, 12px) clamp(15px, 3vw, 20px);
    border-radius: clamp(20px, 3vw, 25px);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
}

.social-btn.facebook {
    background: #1877f2;
    color: white;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: clamp(20px, 4vw, 30px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(15px, 3vw, 20px);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
}

.footer-links {
    display: flex;
    gap: clamp(15px, 3vw, 20px);
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--primary-light);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

/* Animations */
@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-up {
    animation: fadeInUp 0.8s ease forwards;
}

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

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