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

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Color Variables */
:root {
    --primary-50: #FFFCE6;
    --primary-100: #FFF9CC;
    --primary-200: #FFF499;
    --primary-300: #FFEE66;
    --primary-400: #FFE833;
    --primary-500: #FFE200;
    --primary-600: #CCB500;
    --primary-700: #998800;
    --primary-800: #665A00;
    --primary-900: #332D00;
    
    --secondary-50: #E6E6E6;
    --secondary-100: #CCCCCC;
    --secondary-200: #999999;
    --secondary-300: #666666;
    --secondary-400: #333333;
    --secondary-500: #000000;
    
    --success-500: #22C55E;
    --warning-500: #F59E0B;
    --error-500: #EF4444;
    --whatsapp-green: #25D366;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-500);
}

/* Utility Classes */
.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container-custom {
        padding: 0 2rem;
    }
}

.section {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 6rem 0;
    }
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-500);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 3rem;
    color: var(--secondary-400);
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 1.25rem;
    }
}

.text-primary {
    color: var(--primary-500);
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

.bg-white {
    background-color: #ffffff;
}

.bg-secondary {
    background-color: var(--secondary-500);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline, .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    transform: scale(1);
    cursor: pointer;
    border: none;
    font-size: 0.875rem;
    white-space: nowrap;
    min-height: 44px;
}

@media (min-width: 768px) {
    .btn-primary, .btn-secondary, .btn-outline, .btn-whatsapp {
        font-size: 1rem;
        padding: 0.875rem 1.75rem;
    }
}

.btn-primary {
    background-color: var(--primary-500);
    color: var(--secondary-500);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-600);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary:active {
    transform: scale(0.95);
}

.btn-secondary {
    background-color: var(--secondary-500);
    color: var(--primary-500);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background-color: var(--secondary-400);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    border: 2px solid var(--primary-500);
    color: var(--primary-500);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--secondary-500);
    color: var(--primary-500);
    transform: scale(1.05);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: white;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #22c55e;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:active {
    transform: scale(0.95);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    padding: 0.75rem 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.header.scrolled {
    background-color: var(--secondary-500);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.logo {
    flex-shrink: 0;
}

.logo-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-500);
    margin: 0;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .logo-title {
        font-size: 1.25rem;
    }
}

.logo-subtitle {
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .logo-subtitle {
        font-size: 0.75rem;
    }
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background-color: var(--primary-500);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-500);
}

.nav-link:hover::after {
    width: 100%;
}

.header-cta {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .header-cta {
        display: flex;
    }
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary-500);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    white-space: nowrap;
}

.phone-link:hover {
    color: var(--primary-400);
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    min-height: 44px;
    min-width: 44px;
    transition: all 0.3s ease;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn:hover {
    color: var(--primary-500);
    transform: scale(1.1);
}

.mobile-menu {
    display: none;
    margin-top: 1rem;
    padding: 1rem 0;
    background-color: rgba(0, 0, 0, 0.95);
    border-radius: 0.5rem;
    animation: slideDown 0.3s ease;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
}

.mobile-nav-link:hover {
    color: var(--primary-500);
    background-color: rgba(255, 226, 0, 0.1);
    transform: translateX(0.5rem);
}

.mobile-contact {
    padding: 0.5rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
}

.mobile-header-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 0 1rem;
}

.mobile-whatsapp, .mobile-cta {
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 6rem 0 4rem;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.pexels.com/photos/534151/pexels-photo-534151.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

@media (min-width: 768px) {
    .hero {
        padding: 8rem 0 5rem;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 12rem 0 8rem;
    }
}

.hero-content {
    max-width: 48rem;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-500);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-title-line {
    display: block;
}

.hero-title-line:nth-child(2) {
    margin-top: 0.75rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.hero-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4rem;
    background-color: white;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background-color: var(--secondary-500);
    border-radius: 0.5rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.5s ease;
    height: 100%;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-0.5rem) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card:active {
    transform: scale(0.95);
}

.service-image {
    height: 10rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .service-image {
        height: 12rem;
    }
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    background-color: #f3f4f6;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.25rem;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .service-content {
        padding: 1.5rem;
    }
}

.service-card:hover .service-content {
    background-color: var(--secondary-400);
}

.service-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-500);
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .service-title {
        font-size: 1.25rem;
    }
}

.service-card:hover .service-title {
    transform: scale(1.05);
}

.service-description {
    color: white;
    transition: color 0.3s ease;
    font-size: 0.875rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .service-description {
        font-size: 1rem;
    }
}

.service-card:hover .service-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .feature-icon {
        width: 4rem;
        height: 4rem;
    }
}

.feature-icon i {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--secondary-500);
}

@media (min-width: 768px) {
    .feature-icon i {
        width: 2rem;
        height: 2rem;
    }
}

.feature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 226, 0, 0.3);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-500);
}

@media (min-width: 768px) {
    .feature-title {
        font-size: 1.25rem;
    }
}

.feature-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .feature-description {
        font-size: 1rem;
    }
}

.cta-banner {
    margin-top: 3rem;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 226, 0, 0.3);
}

@media (min-width: 768px) {
    .cta-banner {
        margin-top: 4rem;
        padding: 2rem;
        flex-direction: row;
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .cta-banner {
        padding: 3rem;
    }
}

.cta-content {
    text-align: center;
}

@media (min-width: 768px) {
    .cta-content {
        text-align: left;
        flex: 1;
    }
}

.cta-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-500);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 1.875rem;
    }
}

.cta-subtitle {
    color: var(--secondary-500);
    font-size: 1rem;
}

@media (min-width: 768px) {
    .cta-subtitle {
        font-size: 1.125rem;
    }
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.testimonial-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .testimonial-card {
        padding: 2rem;
    }
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-500), var(--primary-600));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    display: flex;
    margin-bottom: 1rem;
}

.star {
    width: 1.125rem;
    height: 1.125rem;
    margin-right: 0.25rem;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .star {
        width: 1.25rem;
        height: 1.25rem;
    }
}

.star.filled {
    color: var(--primary-500);
    fill: var(--primary-500);
}

.testimonial-card:hover .star.filled {
    transform: scale(1.2);
}

.testimonial-quote {
    font-style: italic;
    color: var(--secondary-500);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.875rem;
    line-height: 1.6;
    position: relative;
}

@media (min-width: 768px) {
    .testimonial-quote {
        font-size: 1rem;
    }
}

.testimonial-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-500);
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    opacity: 0.3;
}

.testimonial-author {
    margin-top: auto;
}

.author-name {
    font-weight: 600;
    color: var(--secondary-500);
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .author-name {
        font-size: 1rem;
    }
}

.author-location, .author-project {
    font-size: 0.75rem;
    color: var(--secondary-400);
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .author-location, .author-project {
        font-size: 0.875rem;
    }
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.contact-info {
    text-align: center;
}

@media (min-width: 1024px) {
    .contact-info {
        text-align: left;
    }
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 1.875rem;
    }
}

@media (min-width: 1024px) {
    .contact-title {
        font-size: 2.25rem;
    }
}

.contact-subtitle {
    font-size: 1.125rem;
    color: var(--secondary-400);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .contact-subtitle {
        font-size: 1.25rem;
    }
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .contact-methods {
        align-items: flex-start;
    }
}

.contact-method {
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease;
    text-align: left;
}

.contact-method:hover {
    transform: translateY(-0.25rem);
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .contact-icon {
        width: 3rem;
        height: 3rem;
    }
}

.contact-method:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 226, 0, 0.3);
}

.contact-icon i {
    width: 1.125rem;
    height: 1.125rem;
    color: var(--secondary-500);
}

@media (min-width: 768px) {
    .contact-icon i {
        width: 1.25rem;
        height: 1.25rem;
    }
}

.contact-method-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .contact-method-title {
        font-size: 1.125rem;
    }
}

.contact-link {
    font-size: 1.125rem;
    font-weight: 700;
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .contact-link {
        font-size: 1.25rem;
    }
}

.contact-link:hover {
    color: var(--primary-600);
}

.contact-text {
    color: var(--secondary-500);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .contact-text {
        font-size: 1rem;
    }
}

.contact-form-container {
    background-color: var(--secondary-500);
    border-radius: 0.5rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .contact-form-container {
        padding: 2rem;
    }
}

.contact-form-container:hover {
    box-shadow: 0 0 25px rgba(255, 226, 0, 0.3);
}

.form-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-500);
    text-align: center;
}

@media (min-width: 768px) {
    .form-title {
        font-size: 1.5rem;
    }
}

.form-status {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .form-status {
        font-size: 1rem;
    }
}

.form-status.success {
    background-color: rgba(34, 197, 94, 0.1);
    color: var(--success-500);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-status.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error-500);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.form-status.loading {
    background-color: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
    animation: pulse 1s infinite;
}

.form-status.hidden {
    display: none;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group.focused .form-label {
    color: var(--primary-500);
    transform: scale(0.9);
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.form-input {
    padding: 0.75rem 1rem;
    border: 2px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    min-height: 44px;
    background-color: white;
}

.form-input:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(255, 226, 0, 0.2);
    transform: scale(1.01);
}

.form-textarea {
    height: 6rem;
    resize: none;
}

@media (min-width: 768px) {
    .form-textarea {
        height: 8rem;
    }
}

.form-submit {
    width: 100%;
    margin-top: 0.5rem;
}

.form-submit:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

.form-privacy {
    font-size: 0.75rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    line-height: 1.4;
}

/* Footer */
.footer {
    background-color: var(--secondary-500);
    color: white;
    padding: 2.5rem 0;
}

@media (min-width: 768px) {
    .footer {
        padding: 3rem 0;
    }
}

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

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-500);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .footer-title {
        font-size: 1.5rem;
    }
}

.footer-description {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .footer-description {
        font-size: 1rem;
    }
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .footer-contact-item {
        font-size: 1rem;
    }
}

.footer-contact-item:hover {
    transform: translateX(0.25rem);
}

.footer-contact-item i {
    width: 1rem;
    height: 1rem;
}

.footer-contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--primary-500);
}

.footer-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-500);
}

@media (min-width: 768px) {
    .footer-section-title {
        font-size: 1.25rem;
    }
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    padding: 0.25rem 0;
    position: relative;
}

@media (min-width: 768px) {
    .footer-links a {
        font-size: 1rem;
    }
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-500);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-500);
    transform: translateX(0.25rem);
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid var(--secondary-400);
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-copyright {
        font-size: 1rem;
    }
}

.footer-legal {
    font-size: 0.75rem;
    color: white;
}

@media (min-width: 768px) {
    .footer-legal {
        font-size: 0.875rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-500);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 30;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(2.5rem);
    pointer-events: none;
}

.scroll-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-to-top:hover {
    background-color: var(--primary-400);
    transform: translateY(-0.25rem) scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 226, 0, 0.4);
}

.scroll-to-top i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--secondary-500);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(2rem);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    transform: translateY(3rem);
}

.slide-up.active {
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transform: none;
}

.fade-in.active {
    opacity: 1;
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
}

.scale-in.active {
    opacity: 1;
    transform: scale(1);
}

.bounce-in {
    animation: bounceIn 0.6s ease forwards;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.delay-100 {
    animation-delay: 0.1s;
    transition-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
    transition-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
    transition-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
    transition-delay: 0.5s;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hover-lift:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hover-glow:hover {
    box-shadow: 0 0 25px rgba(255, 226, 0, 0.3);
}

.hover-glow:active {
    box-shadow: 0 0 15px rgba(255, 226, 0, 0.2);
}

.pulse {
    animation: pulse 2s infinite;
}

.pulse-glow {
    animation: pulseGlow 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 5px rgba(255, 226, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 226, 0, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 226, 0, 0.5);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-1rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Touch feedback for mobile */
@media (hover: none) and (pointer: coarse) {
    .hover-lift:active {
        transform: translateY(-0.25rem);
    }
    
    .service-card:active {
        transform: translateY(-0.25rem) scale(1.01);
    }
    
    .testimonial-card:active {
        transform: scale(1.01);
    }
    
    .btn-primary:active,
    .btn-secondary:active,
    .btn-outline:active,
    .btn-whatsapp:active {
        transform: scale(0.95);
    }
}

/* Loading states */
.loading {
    animation: pulse 1.5s ease-in-out infinite;
    background-color: #e5e7eb;
}

/* Success animation */
.success-checkmark {
    animation: checkmark 0.3s ease-in-out forwards;
}

@keyframes checkmark {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary, .btn-whatsapp {
        border: 2px solid var(--secondary-500);
    }
    
    .btn-outline {
        border-width: 3px;
    }
    
    .form-input:focus {
        border-width: 3px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    .hero {
        background-attachment: scroll;
    }
}

/* Print styles */
@media print {
    .header,
    .scroll-to-top,
    .mobile-menu-btn {
        display: none;
    }
    
    .hero {
        background-attachment: scroll;
        padding: 2rem 0;
    }
    
    .section {
        padding: 2rem 0;
    }
}