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

:root {
    --color-light: #FFFC98;
    --color-orange: #FE8043;
    --color-red: #B42C1C;
    --color-brown: #7C4C48;
    --color-dark: #2A1617;
    --color-gold: #D4AF37;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-red) 100%);
    min-height: 100vh;
    color: var(--color-dark);
}

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

/* Header */
header {
    text-align: center;
    padding: 40px 0 20px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 20px 50px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-5px);
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    animation: rotate 20s linear infinite;
    border-radius: inherit;
}

.logo h1 {
    font-size: 2.5rem;
    color: var(--color-red);
    font-weight: 800;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 10px 20px;
}

.title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--color-light);
    font-weight: 300;
    animation: fadeInUp 1s ease;
}

/* Description Section */
.description {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px 0;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: fadeIn 1.2s ease;
}

.card h3 {
    color: var(--color-red);
    font-size: 2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.card h3 i {
    color: var(--color-gold);
    font-size: 1.8rem;
}

.card p {
    color: var(--color-dark);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Servicios */
.services-section {
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.service-item {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-orange);
    box-shadow: 0 8px 25px rgba(254, 128, 67, 0.2);
}

.service-item i {
    font-size: 3rem;
    color: var(--color-orange);
    margin-bottom: 15px;
    display: block;
}

.service-item h4 {
    color: var(--color-red);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service-item p {
    color: var(--color-brown);
    font-size: 0.95rem;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--color-orange);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-top-color: var(--color-red);
}

.icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--color-orange);
}

.icon i {
    color: var(--color-orange);
}

.feature-card h4 {
    color: var(--color-red);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--color-brown);
    font-size: 1rem;
    line-height: 1.6;
}

/* Proceso */
.process-section {
    background: linear-gradient(135deg, var(--color-light) 0%, white 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-orange), var(--color-red));
    color: white;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(254, 128, 67, 0.4);
}

.process-step h4 {
    color: var(--color-red);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.process-step p {
    color: var(--color-brown);
    font-size: 0.95rem;
}

/* Stats */
.stats {
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-brown) 100%);
    color: white;
}

.stats h3 {
    color: var(--color-light) !important;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.number {
    display: block;
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--color-light);
    margin-bottom: 10px;
}

.label {
    display: block;
    font-size: 1rem;
    color: white;
    font-weight: 500;
}

/* Testimonios */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.testimonial {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--color-orange);
}

.testimonial-text {
    font-style: italic;
    color: var(--color-brown);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--color-red);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--color-brown);
    font-size: 0.9rem;
}

/* CTA Buttons */
.cta {
    text-align: center;
    padding: 10px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 18px 45px;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--color-red);
    color: white;
}

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

.btn-secondary {
    background: white;
    color: var(--color-red);
    border: 3px solid var(--color-red);
}

.btn-secondary:hover {
    background: var(--color-red);
    color: white;
    transform: scale(1.05);
}

/* Footer */
footer {
    background: var(--color-dark);
    color: white;
    padding: 30px 20px 20px;
    margin-top: 10px;
    border-radius: 20px 20px 0 0;
}

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

.footer-logo {
    text-align: center;
}

.footer-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-light);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.footer-section h4 {
    color: var(--color-light);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: var(--color-orange);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--color-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .logo h1 {
        font-size: 1.8rem;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

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

    .cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}
