* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #10b981;
    --primary-dark: #059669;
    --dark-bg: #1a1a1a;
    --dark-light: #2a2a2a;
    --dark-lighter: #3a3a3a;
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --text-gray-light: #d1d5db;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    overflow-x: hidden; /* Previene scroll horizontal */
}


html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    background-color: var(--dark-bg);
    border-bottom: 1px solid var(--dark-lighter);
    padding: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 10;
}

.nav-logo:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.logo-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-gray-light);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text-white);
}

.nav-link.active {
    color: var(--primary-color);
}


/* Menú Hamburguesa Móvil */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text-white);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-logo {
        order: -1;
    }

    .logo-image {
        width: 28px;
        height: 28px;
    }
    
    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        height: calc(100vh - 64px);
        background-color: var(--dark-bg);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 2rem;
        gap: 1rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 100;
        border-top: 1px solid var(--dark-lighter);
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 1.125rem;
        padding: 0.75rem 0;
        width: 100%;
    }
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 64px);
    padding: 0;
    margin: 0;
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 4rem 0;
    margin: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
    overflow: hidden;
    width: 100%;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-section {
        margin-bottom: 3rem;
        padding: 4rem 0;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(5, 150, 105, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2310b981' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

/* Profile Section */
.profile-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .profile-section {
        flex-direction: row;
        align-items: flex-start;
    }
}

.profile-image-container {
    flex-shrink: 0;
}

.profile-image-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 768px) {
    .profile-image-wrapper {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 480px) {
    .profile-image-wrapper {
        width: 150px;
        height: 150px;
    }
}

.profile-image-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.3);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .profile-name {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .profile-name {
        font-size: 1.75rem;
    }
}

.profile-title {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .profile-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .profile-title {
        font-size: 1rem;
    }
}

.profile-description {
    color: var(--text-gray-light);
    line-height: 1.75;
    max-width: 48rem;
}

/* Competencies Section */
.competencies-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding: 3rem 0;
    width: 100%;
}

.projects-grid {
    animation: fadeInUp 0.6s ease-out;
    margin: 0;
    padding: 0;
    width: 100%;
}

.projects-container {
    padding: 3rem 1rem 4rem 1rem;
    margin: 3rem auto 2rem auto;
    max-width: 1200px;
}

@media (min-width: 768px) {
    .projects-container {
        padding: 4rem 1rem 4rem 1rem;
        margin: 4rem auto 2rem auto;
    }
}

.contact-grid {
    animation: fadeInUp 0.6s ease-out;
}

.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--text-white);
    margin-bottom: 2rem;
}

.competencies-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .competencies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.competency-card {
    background-color: var(--dark-light);
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.competency-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.competency-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.competency-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.competency-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-white);
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    padding: 0.25rem 0.75rem;
    background-color: var(--dark-lighter);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    color: var(--text-white);
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.skill-tag:hover {
    background-color: rgba(16, 185, 129, 0.2);
    transform: scale(1.05);
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    animation: fadeInDown 0.6s ease-out;
}

.page-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-white);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .page-title {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.75rem;
    }
}

.page-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
    max-width: 42rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .page-subtitle {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .page-subtitle {
        font-size: 0.875rem;
    }
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.project-card {
    background-color: var(--dark-light);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(16, 185, 129, 0.1);
    animation: fadeInUp 0.6s ease-out;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.3);
}

.project-image-container {
    position: relative;
    height: 12rem;
    background-color: var(--dark-lighter);
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-content {
    padding: 1.5rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.project-description {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.project-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-tag {
    padding: 0.25rem 0.75rem;
    background-color: var(--dark-lighter);
    border-radius: 0.375rem;
    font-size: 0.75rem;
    color: var(--text-white);
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.tech-tag:hover {
    background-color: rgba(16, 185, 129, 0.2);
    transform: scale(1.1);
}

.project-link {
    color: var(--text-gray);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.project-link {
    color: var(--text-gray);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.project-link:hover {
    color: var(--primary-color);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.project-status {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.status-completed {
    background-color: rgba(16, 185, 129, 0.2);
    color: var(--primary-color);
}

.status-in-progress {
    background-color: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.project-date {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-features {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: rgba(16, 185, 129, 0.05);
    border-radius: 0.5rem;
    border-left: 3px solid var(--primary-color);
}

.project-features-title {
    color: var(--text-white);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.project-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-features-list li {
    color: var(--text-gray-light);
    font-size: 0.875rem;
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.project-features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.project-links {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Botón de descarga de CV */
.profile-actions {
    margin-bottom: 1.5rem;
}

.cv-download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.cv-download-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.cv-download-button:active {
    transform: translateY(0);
}

/* Experience Section */
.experience-section {
    margin-bottom: 4rem;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    animation: fadeInLeft 0.6s ease-out;
}

.section-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.section-title-primary {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--primary-color);
}

.timeline {
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 1.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--dark-lighter);
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 1.5rem;
    animation: fadeInLeft 0.6s ease-out;
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(10px);
}

.timeline-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--dark-light);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
    background-color: rgba(16, 185, 129, 0.1);
}

.timeline-icon i {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.timeline-content {
    flex: 1;
    padding-bottom: 2rem;
    transition: padding-left 0.3s ease;
}

.timeline-item:hover .timeline-content {
    padding-left: 5px;
}

.timeline-header-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .timeline-header-row {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-white);
}

.timeline-date {
    color: var(--text-gray);
    font-size: 0.875rem;
    white-space: nowrap;
}

.timeline-company {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: var(--text-gray);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info-section,
.contact-form-section {
    width: 100%;
}

.contact-section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    animation: fadeInRight 0.6s ease-out;
}

.contact-info-item:hover {
    background-color: rgba(16, 185, 129, 0.05);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    transform: scale(1.2);
    color: var(--primary-dark);
}

.contact-info-content {
    flex: 1;
}

.contact-label {
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.contact-value:hover {
    color: var(--primary-color);
}

/* Form */
.contact-form {
    background-color: var(--dark-light);
    border-radius: 0.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.contact-form:hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.5rem 1rem;
    background-color: var(--dark-bg);
    border: 1px solid var(--dark-lighter);
    border-radius: 0.375rem;
    color: var(--text-white);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    transform: translateY(-2px);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #6b7280;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--text-white);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1rem;
}

.submit-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

/* Checkbox de Privacidad */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.checkbox-input {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--primary-color);
}

.checkbox-text {
    color: var(--text-gray-light);
    font-size: 0.875rem;
    line-height: 1.5;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Footer */
.footer {
    border-top: 1px solid var(--dark-lighter);
    margin-top: 4rem;
    padding: 2rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-left {
        align-items: flex-start;
    }
}

.footer-link {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-text {
    color: var(--text-gray);
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    color: var(--text-gray);
    font-size: 1.25rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
}


/* Mensajes del Formulario */
.form-message {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

.form-message-success {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-message-error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Política de Privacidad */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.privacy-updated {
    color: var(--text-gray);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--dark-lighter);
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.privacy-section p {
    color: var(--text-gray-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.privacy-list li {
    color: var(--text-gray-light);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.privacy-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-list li strong {
    color: var(--text-white);
}

.privacy-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Aplicar animaciones con delay a los elementos del timeline */
.timeline-item:nth-child(1) {
    animation-delay: 0.1s;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
    animation-delay: 0.3s;
}

.timeline-item:nth-child(4) {
    animation-delay: 0.4s;
}

/* Aplicar animaciones con delay a las tarjetas de proyectos */
.project-card:nth-child(1) {
    animation-delay: 0.1s;
}

.project-card:nth-child(2) {
    animation-delay: 0.2s;
}

/* Aplicar animaciones con delay a los elementos de contacto */
.contact-info-item:nth-child(1) {
    animation-delay: 0.1s;
}

.contact-info-item:nth-child(2) {
    animation-delay: 0.2s;
}

.contact-info-item:nth-child(3) {
    animation-delay: 0.3s;
}

