/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

a{
    text-decoration: none;
}
/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #2563eb;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563eb;
}

.cta-button {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.hero-overlay {
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #fbbf24;
}

.hero-description {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.hero-description p {
    margin-bottom: 1rem;
}

.hero-cta {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(251, 191, 36, 0.4);
}

/* Nuestras Ofertas Section */
.ofertas {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.ofertas-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ofertas-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ofertas-left {
    display: flex;
    flex-direction: column;
}

.ofertas-content {
    text-align: left;
}

.ofertas-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.ofertas-subtitle {
    font-size: 1.5rem;
    color: #2563eb;
    margin-bottom: 3rem;
    font-weight: 600;
}

.ofertas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.oferta-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

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

.oferta-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.oferta-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.oferta-card p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

.ofertas-cta {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-self: flex-start;
}

.ofertas-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
}

.ofertas-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.offerta-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.offerta-img:hover {
    transform: scale(1.02);
}

/* Pasos Section */
.pasos {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
}

.pasos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pasos-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pasos-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.pasos-subtitle {
    font-size: 1.3rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.pasos-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.pasos-left {
    display: flex;
    flex-direction: column;
}

.pasos-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.paso-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.paso-number {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.paso-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.paso-content p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Form Styles */
.pasos-right {
    display: flex;
    justify-content: center;
}

.form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
}

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

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-submit {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 1rem;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.testimonials-subtitle {
    font-size: 1.3rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e5e7eb;
    transition: border-color 0.3s ease;
}

.testimonial-card:hover .testimonial-img {
    border-color: #2563eb;
}

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

.testimonial-text {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.testimonial-time {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2937, #111827);
    color: white;
    padding: 4rem 0 2rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-logo {
    font-size: 1.8rem;
    color: #60a5fa;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.6;
}

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

.footer-address,
.footer-phone {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #d1d5db;
    line-height: 1.6;
}

.footer-icon {
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.footer-phone a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-phone a:hover {
    color: #93c5fd;
}

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

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #60a5fa;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Main Content */
.main-content {
    padding: 4rem 0;
}

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.content-section p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design - Below 1024px */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .ofertas-title {
        font-size: 2.4rem;
    }
    
    .ofertas-layout {
        gap: 3rem;
    }
    
    .offerta-img {
        max-width: 90%;
    }
    
    .pasos-title {
        font-size: 2.4rem;
    }
    
    .pasos-layout {
        gap: 3rem;
    }
    
    .testimonials-title {
        font-size: 2.4rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-overlay {
        padding: 1rem;
    }
    
    .content-section {
        padding: 0 1rem;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
    
    .ofertas {
        padding: 4rem 0;
    }
    
    .ofertas-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .ofertas-content {
        text-align: center;
    }
    
    .ofertas-title {
        font-size: 2.2rem;
    }
    
    .ofertas-subtitle {
        font-size: 1.3rem;
    }
    
    .ofertas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .oferta-card {
        padding: 2rem 1.5rem;
    }
    
    .offerta-img {
        max-width: 95%;
    }
    
    .ofertas-cta {
        align-self: center;
    }
    
    .pasos-title {
        font-size: 2.2rem;
    }
    
    .pasos-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonials-title {
        font-size: 2.2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .footer {
        padding: 3rem 0 1.5rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        padding: 0.875rem 2rem;
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 0.625rem 1.25rem;
    }
    
    .ofertas-title {
        font-size: 2rem;
    }
    
    .ofertas-subtitle {
        font-size: 1.2rem;
    }
    
    .ofertas-cta {
        padding: 1rem 2.5rem;
        font-size: 1.2rem;
    }
    
    .offerta-img {
        max-width: 100%;
    }
    
    .ofertas-layout {
        gap: 2rem;
    }
    
    .pasos-title {
        font-size: 2rem;
    }
    
    .pasos-subtitle {
        font-size: 1.1rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .form-submit {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonial-img {
        width: 70px;
        height: 70px;
    }
    
    .footer {
        padding: 2rem 0 1rem 0;
    }
    
    .footer-logo {
        font-size: 1.6rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
}

/* Terms Page Styles */
.terms-content {
    padding: 120px 0 4rem 0;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    min-height: 100vh;
}

.terms-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.terms-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.terms-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.terms-date {
    font-size: 1rem;
    color: #6b7280;
    font-style: italic;
}

.terms-body {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.terms-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.terms-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #2563eb;
}

.terms-section p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.terms-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.terms-section li {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.terms-section strong {
    color: #1f2937;
    font-weight: 600;
}

/* Responsive Terms */
@media (max-width: 768px) {
    .terms-content {
        padding: 100px 0 3rem 0;
    }
    
    .terms-container {
        padding: 0 1rem;
    }
    
    .terms-header h1 {
        font-size: 2rem;
    }
    
    .terms-section {
        padding: 1.5rem;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .terms-header h1 {
        font-size: 1.8rem;
    }
    
    .terms-section {
        padding: 1rem;
    }
    
    .terms-section h2 {
        font-size: 1.2rem;
    }
}
