﻿/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    color: #111827;
    background-color: #ffffff;
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.text-red {
    color: #ff1133;
}

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

.min-h-screen {
    min-height: 100vh;
}

.section {
    padding: 4rem 1rem;
}

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

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

.bg-gray {
    background-color: #f9fafb;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom, #f3f4f6, #ffffff);
    padding: 4rem 1rem;
    text-align: center;
}

    .hero-section h1 {
        font-size: 2.25rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

@media (min-width: 768px) {
    .hero-section h1 {
        font-size: 3rem;
    }
}

.hero-section p {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 48rem;
    margin: 0 auto;
}

/* Flex Container */
.flex-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .flex-container {
        flex-direction: row;
        align-items: center;
    }
}

.col-half {
    width: 100%;
}

@media (min-width: 768px) {
    .col-half {
        width: 50%;
    }
}

.margin-bottom {
    margin-bottom: 4rem;
}

/* Image Container */
.image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
    .image-container {
        aspect-ratio: 4/3;
    }
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section Header */
.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.number-circle {
    background-color: #ff1133;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tagline {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ff1133;
}

.section-header h2,
.section-title {
    font-size: 1.875rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .section-header h2,
    .section-title {
        font-size: 2.25rem;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Text Styles */
.highlight-text {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.regular-text {
    color: #4b5563;
    line-height: 1.625;
}

/* Grid Container */
.grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

/* Card Styles */
.card {
    background-color: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

    .card:hover {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }

.card-image {
    height: 16rem;
    position: relative;
}

    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.card-content {
    padding: 2rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.red-line {
    width: 2rem;
    height: 0.25rem;
    background-color: #ff1133;
    margin-right: 0.75rem;
    display: inline-block;
}

/* Value Card */
.value-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

    .value-card:hover {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    }

.icon {
    margin-bottom: 1rem;
}

    .icon svg {
        width: 3rem;
        height: 3rem;
        color: #ff1133;
    }

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: #4b5563;
}

/* CTA Section */
.cta-section {
    background-color: #ff1133;
    padding: 4rem 1rem;
    color: white;
}

    .cta-section h2 {
        font-size: 1.875rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

@media (min-width: 768px) {
    .cta-section h2 {
        font-size: 2.25rem;
    }
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: white;
    color: #ff1133;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .cta-button:hover {
        background-color: #f9fafb;
    }
