/* ==========================================
   VARIABLES Y CONFIGURACIÓN GLOBAL
   ========================================== */

:root {
    --primary-color: #d4af37;
    --secondary-color: #ffd700;
    --accent-color: #ff6b9d;
    --dark-bg: #0a0a0a;
    --dark-secondary: #1a1a1a;
    --dark-tertiary: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-tertiary: #808080;
    --border-color: #333333;
    --shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
    --shadow-lg: 0 20px 60px rgba(212, 175, 55, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', 'Trebuchet MS', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ==========================================
   NAVEGACIÓN
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

.nav-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    gap: 20px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.music-player-header {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 250px;
}

.custom-player {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(20, 20, 30, 0.8);
    padding: 6px 10px;
    border-radius: 6px;
    width: 100%;
    max-width: 240px;
}

.player-btn {
    background: var(--primary-color);
    border: none;
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.player-btn:hover {
    background: #ffd700;
    transform: scale(1.1);
}

.player-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 100px;
}

.player-time {
    font-size: 9px;
    color: var(--primary-color);
    text-align: center;
}

.player-progress {
    width: 100%;
    height: 3px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.player-volume {
    width: 35px;
    height: 3px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    display: block;
    padding: 5px 0;
}

.nav-menu.active {
    display: flex !important;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: calc(100vh - 70px);
    background: rgba(10, 10, 10, 0.99);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    z-index: 999 !important;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

.nav-menu.active li {
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-menu.active a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 20px;
    font-size: 18px;
    color: var(--text-primary);
}

.nav-menu.active a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    flex-shrink: 0;
    pointer-events: auto !important;
    z-index: 2000 !important;
    padding: 5px;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 5px 0;
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 70px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 50%, var(--dark-bg) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: brightness(0.8) contrast(1.1) saturate(0.9) blur(0px);
    animation: zoomParallax 20s ease-in-out infinite;
    transform-origin: center;
    transition: filter 0.8s ease-in-out;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.stars::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.5;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: clamp(48px, 12vw, 120px);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* ==========================================
   BOTONES
   ========================================== */

.btn {
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-bg);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.btn-submit {
    width: 100%;
    padding: 16px;
}

/* ==========================================
   SCROLL INDICATOR
   ========================================== */

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 13px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 3px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 3px;
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(8px); opacity: 0; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes zoomParallax {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.25;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.3;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   SECCIONES GENERALES
   ========================================== */

section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: clamp(36px, 8vw, 56px);
    font-weight: 800;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

/* ==========================================
   SECCIÓN SOBRE MÍ
   ========================================== */

.about {
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-bg) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    animation: fadeInLeft 0.8s ease-out;
}

.about-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
}

.skills {
    margin-top: 50px;
}

.skills h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-tag {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.skill-tag:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
}

/* Avatar Placeholder */
.about-image {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.avatar {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(255, 215, 0, 0.2));
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--primary-color);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.2);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.3), inset 0 0 40px rgba(212, 175, 55, 0.1);
    display: block;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.shape {
    position: absolute;
    border: 2px solid var(--primary-color);
    opacity: 0.3;
}

.shape-1 {
    width: 200px;
    height: 200px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: -50px;
    right: -30px;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 150px;
    height: 150px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    bottom: -30px;
    left: -40px;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 100px;
    height: 100px;
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    top: 50%;
    right: -50px;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================
   SECCIÓN SERVICIOS
   ========================================== */

.services {
    background: var(--dark-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: linear-gradient(135deg, var(--dark-secondary), rgba(212, 175, 55, 0.05));
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
}

.service-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    color: var(--text-tertiary);
    font-size: 14px;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ==========================================
   SECCIÓN PORTFOLIO
   ========================================== */

.portfolio {
    background: linear-gradient(135deg, var(--dark-secondary) 0%, var(--dark-bg) 100%);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.portfolio-card {
    background: var(--dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.portfolio-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(255, 215, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portfolio-card:hover .portfolio-image {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(255, 215, 0, 0.2));
}

.image-placeholder {
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.7;
}

.portfolio-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    width: fit-content;
}

.portfolio-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.portfolio-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.view-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.view-more:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* ==========================================
   SECCIÓN CONTACTO
   ========================================== */

.contact {
    background: var(--dark-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

.info-card {
    background: linear-gradient(135deg, var(--dark-secondary), rgba(212, 175, 55, 0.05));
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.info-card i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.info-card a,
.info-card p {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    transition: var(--transition);
}

.info-card a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
    text-decoration: none;
}

.social-btn:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: var(--dark-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-tertiary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--dark-secondary);
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    text-align: center;
    margin-top: 100px;
}

.footer p {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-subtitle {
    margin-top: 10px;
}

.heart {
    color: var(--accent-color);
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ==========================================
   TOAST NOTIFICATION
   ========================================== */

.toast {
    position: fixed;
    bottom: -100px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-bg);
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 600;
    z-index: 2000;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.toast.show {
    bottom: 30px;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 768px) {
    .nav-container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0 12px;
        height: 60px;
        gap: 8px;
    }

    .nav-menu {
        display: none !important;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .hamburger {
        display: flex !important;
        flex-shrink: 0;
        z-index: 2000 !important;
        pointer-events: auto !important;
        padding: 5px;
        gap: 4px;
    }

    .hamburger span {
        width: 24px;
        height: 2.5px;
        margin: 4px 0;
    }

    .logo {
        font-size: 15px;
        letter-spacing: 0px;
        max-width: calc(100vw - 60px);
    }

    .music-player-header {
        display: flex !important;
        min-width: 150px !important;
        flex-shrink: 0;
    }

    .music-player-header audio {
        height: 32px;
        width: 140px;
    }

    .hero {
        margin-top: 60px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        gap: 10px;
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .avatar {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .btn {
        padding: 12px 32px;
        font-size: 14px;
    }
}

/* LANDSCAPE MODE - RESPONSIVE */
@media (max-height: 600px) and (orientation: landscape) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 50px;
        overflow: hidden;
    }

    .nav-container {
        width: 100%;
        max-width: 100%;
        height: 50px;
        padding: 0 12px;
    }

    .logo {
        font-size: 14px;
    }

    .hero {
        margin-top: 50px;
        min-height: auto;
        padding: 30px 0;
        width: 100%;
    }

    .hero-content {
        padding: 0 20px;
        width: 100%;
    }

    .hero-title {
        font-size: 26px;
        margin: 5px 0;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-description {
        font-size: 11px;
        display: none;
    }

    .hero-buttons {
        gap: 8px;
        margin: 10px 0;
        flex-direction: column;
    }

    .hero-buttons .btn {
        padding: 8px 20px;
        font-size: 12px;
        width: auto;
    }

    .scroll-indicator {
        display: none;
    }

    section {
        padding: 30px 0;
        width: 100%;
        overflow: hidden;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px;
        overflow-x: hidden !important;
    }

    .nav-menu.active {
        width: 100% !important;
        overflow-x: hidden !important;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 60px;
    }

    .logo {
        font-size: 13px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 28px;
    }

    .skills-grid {
        gap: 8px;
    }

    .skill-tag {
        padding: 6px 12px;
        font-size: 12px;
    }

    .service-card,
    .info-card {
        padding: 25px 20px;
    }

    .footer p {
        font-size: 12px;
    }
}
