/* Variables globales */
:root {
    --color-bg: #0f111b;
    --color-text: #cfcfcf;
    --color-heading: #ffffff;
    --color-accent1: #00ffe1;
    --color-accent2: #ff7b00;
    --font-main: 'Arial', sans-serif;
    --transition: all 0.3s ease;
}

/* Reset y estilos básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--color-accent1);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-accent2);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-heading);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent1), var(--color-accent2));
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 5rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Botones */
.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(90deg, var(--color-accent1), var(--color-accent2));
    color: var(--color-bg);
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent2), var(--color-accent1));
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    background-color: transparent;
    color: var(--color-accent1);
    border: 2px solid var(--color-accent1);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: var(--color-accent1);
    color: var(--color-bg);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(15, 17, 27, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 0.8rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: var(--color-heading);
    font-weight: 800;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    align-items: center;
}

.main-nav li {
    margin: 0 1rem;
    display: flex;
    align-items: center;
}

.main-nav a {
    color: var(--color-heading);
    font-weight: 600;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent1), var(--color-accent2));
    transition: var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--color-heading);
    margin: 6px 0;
    transition: var(--transition);
}

#menu-toggle {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-color: var(--color-bg);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 255, 225, 0.2), rgba(255, 123, 0, 0.2));
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 span {
    display: block;
    font-weight: 300;
    font-size: 0.5em;
    margin-bottom: 0.5rem;
}

.hero-btns {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Services Section */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-accent1), var(--color-accent2));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    margin-bottom: 1.5rem;
}

.service-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

/* Why Us Section */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-us-item {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: var(--transition);
}

.why-us-item:hover {
    background-color: rgba(255, 255, 255, 0.07);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--color-accent1), var(--color-accent2));
    border-radius: 50%;
}

.why-us-icon svg {
    width: 40px;
    height: 40px;
    color: var(--color-bg);
}

/* Process Section */
.process-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.process-step {
    position: relative;
    padding-left: 3rem;
}

.process-step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(45deg, var(--color-accent1), var(--color-accent2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg);
    font-weight: 700;
}

.process-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 1.25rem;
    top: 2.5rem;
    width: 2px;
    height: calc(100% - 1rem);
    background: linear-gradient(to bottom, var(--color-accent1), var(--color-accent2));
    transform: translateX(-50%);
}

/* Testimonials Section */
.testimonials {
    background-color: rgba(255, 255, 255, 0.02);
    padding: 5rem 0;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 2rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 4rem;
    font-family: serif;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info {
    margin-left: 1rem;
}

.testimonial-author-name {
    font-weight: 700;
    color: var(--color-heading);
}

.testimonial-author-position {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    position: relative;
    font-weight: 700;
    color: var(--color-heading);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-toggle {
    display: block;
    width: 100%;
    color: var(--color-heading);
    text-decoration: none;
}

.faq-item.active .faq-question::after {
    content: '–';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

/* Contact Section */
.contact {
    position: relative;
    background-color: rgba(255, 255, 255, 0.02);
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background-color: rgba(15, 17, 27, 0.9);
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--color-accent1), var(--color-accent2), var(--color-accent1));
    z-index: -1;
    border-radius: 17px;
    filter: blur(10px);
    opacity: 0.5;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-heading);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--color-text);
    font-family: var(--font-main);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent1);
    box-shadow: 0 0 0 2px rgba(0, 255, 225, 0.2);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23ffffff' d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    padding-right: 40px;
    color: var(--color-heading);
    cursor: pointer;
    border: 1px solid rgba(0, 255, 225, 0.3);
}

.form-select:focus {
    border-color: var(--color-accent1);
    box-shadow: 0 0 0 2px rgba(0, 255, 225, 0.3);
}

.form-select option {
    background-color: rgba(15, 17, 27, 0.95);
    color: var(--color-heading);
    padding: 10px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.checkbox-input {
    margin-top: 5px;
    margin-right: 10px;
}

.checkbox-label {
    font-size: 0.9rem;
}

.checkbox-label a {
    text-decoration: underline;
}

.form-submit {
    text-align: center;
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.3);
    padding-top: 4rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-description {
    margin-top: 1rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-contact p, .footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    margin-top: 4rem;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: rgba(15, 17, 27, 0.95);
    padding: 1rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: var(--transition);
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-content h3 {
    margin-bottom: 0.5rem;
}

.cookie-content p {
    margin-bottom: 0;
    flex: 1;
}

/* Policy Pages */
.policy-page {
    padding: 8rem 0 5rem;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 3rem;
}

.policy-container h1 {
    margin-bottom: 2rem;
    text-align: center;
}

.policy-container h2 {
    margin-top: 2.5rem;
}

.policy-container ul, .policy-container ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.policy-container li {
    margin-bottom: 0.5rem;
}

/* Thank You Page */
.thank-you {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    padding: 3rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    position: relative;
}

.thank-you-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--color-accent1), var(--color-accent2), var(--color-accent1));
    z-index: -1;
    border-radius: 17px;
    filter: blur(10px);
    opacity: 0.5;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--color-bg);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        padding: 6rem 2rem 2rem;
        overflow-y: auto;
        transition: var(--transition);
    }
    
    #menu-toggle:checked ~ .main-nav {
        right: 0;
    }
    
    #menu-toggle:checked ~ label span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    #menu-toggle:checked ~ label span:nth-child(2) {
        opacity: 0;
    }
    
    #menu-toggle:checked ~ label span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav li {
        margin: 0 0 1.5rem;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .process-step:not(:last-child)::before {
        display: none;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .cookie-content {
        text-align: center;
        justify-content: center;
    }
    
    .cookie-content button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-btns .btn-primary, .hero-btns .btn-secondary {
        display: block;
        width: 100%;
        margin: 0 0 1rem 0;
        text-align: center;
    }
    
    .policy-container {
        padding: 2rem;
    }
}

/* SVG Icons */
.icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

/* Favicon */
.favicon-svg {
    display: none;
} 