/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Montserrat', 'Inter', sans-serif;
    line-height: 1.6;
    color: #FFF8F0;
    background: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 32, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #D2915A;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00E0FF;
    text-decoration: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #FFF8F0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #00E0FF;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #00E0FF, #00C1A2);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFF8F0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-phone:hover {
    color: #00E0FF;
}

/* Main Content */
.main {
    padding-top: 80px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(15, 32, 39, 0.8) 0%, rgba(32, 58, 67, 0.8) 50%, rgba(44, 83, 100, 0.8) 100%),
                url('./img/IvwuPC.jpg') center/cover;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 224, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFF8F0 0%, #00E0FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #00E0FF 0%, #00C1A2 100%);
    color: #203A43;
    padding: 16px 40px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 224, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 224, 255, 0.4);
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #00E0FF;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #00E0FF;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Services Section */
.services {
    background: rgba(26, 26, 26, 0.5);
    border-radius: 16px;
    padding: 80px 40px;
    margin: 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: rgba(32, 58, 67, 0.6);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(210, 145, 90, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 224, 255, 0.2);
    border-color: #00E0FF;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #00E0FF 0%, #00C1A2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: #203A43;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #00E0FF;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.pricing-card {
    background: rgba(26, 26, 26, 0.7);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(210, 145, 90, 0.2);
    position: relative;
}

.pricing-card.featured {
    border-color: #00E0FF;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Más Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00E0FF 0%, #00C1A2 100%);
    color: #203A43;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 224, 255, 0.2);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #00E0FF;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FFF8F0;
}

.price-period {
    opacity: 0.7;
    margin-bottom: 30px;
}

.features {
    list-style: none;
    margin-bottom: 40px;
}

.features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(210, 145, 90, 0.2);
}

.features li:last-child {
    border-bottom: none;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    background: rgba(32, 58, 67, 0.3);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(32, 58, 67, 0.5);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #00E0FF 0%, #00C1A2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
    color: #203A43;
}

/* Testimonials Section */
.testimonials {
    background: rgba(26, 26, 26, 0.5);
    border-radius: 16px;
    padding: 80px 40px;
    margin: 0 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(32, 58, 67, 0.6);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(210, 145, 90, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #00E0FF;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.testimonial-author {
    color: #00E0FF;
    font-weight: 600;
}

/* Contact Form */
.contact-form {
    background: rgba(26, 26, 26, 0.7);
    border-radius: 16px;
    padding: 60px 40px;
    margin: 0 auto;
    max-width: 800px;
    border: 2px solid rgba(0, 224, 255, 0.3);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #00E0FF;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(210, 145, 90, 0.3);
    border-radius: 12px;
    background: rgba(32, 58, 67, 0.5);
    color: #FFF8F0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00E0FF;
    box-shadow: 0 0 20px rgba(0, 224, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 248, 240, 0.5);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    flex: 1;
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #FFF8F0;
}

.checkbox-group a {
    color: #00E0FF;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, #00E0FF 0%, #00C1A2 100%);
    color: #203A43;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 224, 255, 0.4);
}

/* Contact Info */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contact-info-item {
    text-align: center;
    padding: 30px;
    background: rgba(32, 58, 67, 0.3);
    border-radius: 16px;
}

.contact-info-item svg {
    width: 50px;
    height: 50px;
    color: #00E0FF;
    margin-bottom: 20px;
}

.contact-info-item h4 {
    color: #00E0FF;
    margin-bottom: 10px;
}

.contact-info-item a {
    color: #FFF8F0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: #00E0FF;
}

/* Footer */
.footer {
    background: rgba(15, 32, 39, 0.9);
    padding: 60px 0 20px;
    margin-top: 80px;
    border-top: 1px solid #D2915A;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: #00E0FF;
    margin-bottom: 20px;
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #FFF8F0;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00E0FF;
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 224, 255, 0.1);
    border-radius: 50%;
    color: #00E0FF;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #00E0FF;
    color: #203A43;
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info svg {
    width: 16px;
    height: 16px;
    color: #00E0FF;
}

.contact-info a {
    color: #FFF8F0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #00E0FF;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(210, 145, 90, 0.2);
    opacity: 0.7;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background: rgba(15, 32, 39, 0.95);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid #D2915A;
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-link {
    color: #00E0FF;
    text-decoration: none;
    font-size: 0.9rem;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-accept {
    background: linear-gradient(135deg, #00E0FF 0%, #00C1A2 100%);
    color: #203A43;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(0, 224, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        height: auto;
        padding: 10px 0;
    }
    
    .logo {
        margin-bottom: 10px;
    }
    
    .logo svg {
        width: 45px;
        height: 45px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .nav-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        text-align: center;
        margin: 10px 0;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 5px 10px;
    }
    
    .contact-phone {
        font-size: 0.9rem;
        margin-top: 10px;
    }
    
    .main {
        padding-top: 90px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services,
    .testimonials,
    .contact-form {
        margin: 0 10px;
        padding: 40px 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .cookie-banner {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    /* Team Section Mobile */
    .section[style*="grid-template-columns: 1fr 1fr"] > div > div {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 8px 0;
    }
    
    .logo svg {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .nav-list {
        gap: 10px;
        margin: 8px 0;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 4px 8px;
    }
    
    .contact-phone {
        font-size: 0.85rem;
    }
    
    .main {
        padding-top: 70px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .services-grid,
    .pricing-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .price {
        font-size: 2.5rem;
    }
} 