/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    overflow-x: hidden;
}

/* Container principal */
.container {
    min-height: 100vh;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" /></filter><rect width="100" height="100" filter="url(%23noise)" opacity="0.1"/></svg>');
    background-color: #1a1a1a;
    padding: 20px;
}

/* Header */
.header {
    margin-bottom: 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: padding 0.3s ease;
}

.header.scrolled .nav {
    padding: 15px 40px;
}

.nav-left {
    display: flex;
    list-style: none;
    gap: 30px;
    position: relative;
}

.nav-left li {
    position: relative;
}

.nav-left li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Línea animada debajo de los links */
.nav-left li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: translateX(-50%);
}

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

.nav-left li a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

/* Logo Central */
.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.logo-text {
    font-family: 'Courier New', monospace;
    font-style: italic;
    font-size: 20px;
    color: #ffffff;
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo-text::before {
    content: '{ ';
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.logo-text::after {
    content: ' }';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.logo-text:hover::before,
.logo-text:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.logo-text:hover {
    letter-spacing: 3px;
}

.header.scrolled .logo-text {
    font-size: 20px;
}

/* Nav Right */
.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Botón Sign In Mejorado */
.btn-signin {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 8px 20px;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.btn-signin::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-signin:hover::before {
    width: 300px;
    height: 300px;
}

.btn-signin:hover {
    color: #1a1a1a;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    gap: 6px;
}

.language-selector i {
    color: #ffffff;
    font-size: 16px;
}

.language-dropdown {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    color: #ffffff;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.language-dropdown:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.language-dropdown option {
    background: #1a1a1a;
    color: #ffffff;
}

/* Social Icons Mejorados */
.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-icon {
    color: #ffffff;
    font-size: 14px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.social-icon:hover::before {
    transform: translateY(0);
}

.social-icon:hover {
    color: #1a1a1a;
    border-color: #ffffff;
    transform: translateY(-3px) rotate(360deg);
}

/* Separador decorativo */
.nav-right::before {
    content: '';
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    margin-right: 5px;
}

/* Title Section */
.title-section {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 20px;
}

.main-title {
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 8px;
    margin-bottom: 5px;
}

.subtitle {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 32px;
    font-weight: normal;
    color: #cccccc;
}

/* Content Grid - Full Width */
.content-grid {
    max-width: 1800px;
    margin: 0 auto;
    padding: 80px 100px;
}

/* Left Feature Box */
.left-feature-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}

.left-feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.feature-vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    position: absolute;
    top: 30px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-label {
    font-family: 'Seaweed Script', cursive;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1;
    font-weight: normal;
}

.feature-content {
    text-align: left;
    z-index: 2;
}

.feature-title {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.feature-description {
    font-size: 13px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-feature {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-feature::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn-feature:hover::before {
    width: 300px;
    height: 300px;
}

.btn-feature:hover {
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Slider Column - Full Width */
.slider-column {
    width: 100%;
    max-width: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    background: #222;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 700px;
    border-radius: 20px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Slide Content Overlay */
.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
    color: #ffffff;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s ease-in-out 0.3s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-title {
    font-family: 'Kaushan Script', cursive;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.slide-description {
    font-family: 'Dancing Script', cursive;
    font-size: 18px;
    color: #f0f0f0;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.btn-slide {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-slide:hover {
    background: #ffffff;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    border-color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.dot.active {
    background: #ffffff;
    border-color: #ffffff;
    width: 30px;
    border-radius: 6px;
}

/* Text Column - Lado Derecho */
.text-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.vertical-text-large {
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.text-large {
    font-family: 'Seaweed Script', cursive;
    font-size: 150px;
    font-weight: normal;
    color: #ffffff;
    line-height: 0.85;
    letter-spacing: -8px;
    text-shadow: 
        3px 3px 10px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 1600px) {
    .content-grid {
        padding: 60px 80px;
    }

    .slider-wrapper {
        height: 650px;
    }
}

@media (max-width: 1400px) {
    .content-grid {
        padding: 50px 60px;
    }

    .slider-wrapper {
        height: 600px;
    }
}

@media (max-width: 1200px) {
    .content-grid {
        padding: 40px;
    }

    .slider-wrapper {
        height: 550px;
    }
}

@media (max-width: 968px) {
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        padding: 20px 25px;
    }

    .header.scrolled .nav {
        padding: 15px 25px;
    }

    .logo {
        position: static;
        transform: none;
        order: -1;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .logo-text {
        font-size: 20px;
    }

    .header.scrolled .logo-text {
        font-size: 18px;
    }

    .nav-left {
        order: 1;
        gap: 25px;
    }

    .nav-left li a {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .nav-right {
        order: 2;
        gap: 12px;
    }

    .btn-signin {
        padding: 7px 18px;
        font-size: 9px;
    }

    .language-selector {
        gap: 5px;
    }

    .language-selector i {
        font-size: 15px;
    }

    .language-dropdown {
        padding: 4px 7px;
        font-size: 10px;
    }

    .social-icons {
        gap: 8px;
    }

    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .content-grid {
        padding: 30px 25px;
    }

    .slider-wrapper {
        height: 450px;
    }

    .main-title {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .subtitle {
        font-size: 24px;
    }

    /* Slider ajustes móvil tablet */
    .slide-title {
        font-size: 28px;
    }

    .slide-description {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .slide-content {
        padding: 30px 20px;
    }

    .btn-slide {
        padding: 9px 22px;
        font-size: 12px;
    }
}

@media (max-width: 640px) {
    .nav {
        padding: 12px 15px;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .header.scrolled .nav {
        padding: 10px 15px;
    }

    .logo {
        position: relative;
        left: 0;
        transform: none;
        order: -1;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .logo-text {
        font-size: 16px;
    }

    .nav-left {
        gap: 12px;
        flex: 1;
    }

    .nav-left li a {
        font-size: 9px;
        letter-spacing: 0.5px;
        padding: 3px 0;
    }

    .nav-left li a::after {
        height: 1px;
    }

    .nav-right {
        gap: 8px;
    }

    .btn-signin {
        padding: 5px 12px;
        font-size: 8px;
        letter-spacing: 1px;
    }

    .language-selector {
        gap: 4px;
    }

    .language-selector i {
        font-size: 14px;
    }

    .language-dropdown {
        padding: 3px 6px;
        font-size: 9px;
    }

    .social-icons {
        gap: 6px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .nav-right::before {
        display: none;
    }

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

    .subtitle {
        font-size: 20px;
    }

    .content-grid {
        padding: 20px;
    }

    .slider-wrapper {
        height: 350px;
        border-radius: 15px;
    }

    .slider-container {
        border-radius: 15px;
    }

    /* Slider móvil - Título y botón */
    .slide-content {
        padding: 15px 15px 25px;
        background: transparent;
        bottom: 20px;
        top: auto;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .slide-title {
        font-size: 28px;
        margin-bottom: 12px;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
        text-align: center;
    }

    /* Ocultar solo descripción en móvil */
    .slide-description {
        display: none;
    }

    /* Botón visible pero más compacto y centrado */
    .btn-slide {
        padding: 10px 25px;
        font-size: 12px;
        margin: 0 auto;
        display: block;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    /* Blog Posts - Ocultar descripciones en móvil */
    .blog-excerpt {
        display: none;
    }

    .blog-link {
        margin-top: 10px;
    }
}

/* ==================== NEW SECTIONS ==================== */

/* Section Headers (Global) */
.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-number {
    font-size: 48px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.section-heading {
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 2px;
    color: #ffffff;
    margin: 0;
}

.section-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

/* About Section */
.about-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.about-text {
    color: #cccccc;
}

.about-intro {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #ffffff;
}

.about-intro strong {
    color: #ffffff;
    font-weight: bold;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999999;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.profile-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    position: relative;
    z-index: 2;
}

.frame-border {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    z-index: 1;
}

/* Blog Section */
.blog-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 12px;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-title {
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    margin: 15px 0;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.blog-link:hover {
    gap: 12px;
    color: #cccccc;
}

.blog-link i {
    font-size: 12px;
}

/* Skills Section */
.skills-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.skill-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.skill-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.skill-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 32px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.skill-card:hover .skill-icon {
    border-color: #ffffff;
    transform: rotate(360deg);
}

.skill-title {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
}

.skill-description {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    padding-right: 40px;
}

.contact-subtitle {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-text {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    font-size: 15px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 16px;
}

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

.form-group {
    width: 100%;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: #ffffff;
    font-size: 15px;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999999;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #ffffff;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 80px;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    font-family: 'Seaweed Script', cursive;
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 14px;
    color: #999999;
    line-height: 1.6;
}

.footer-heading {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-icons {
    display: flex;
    gap: 15px;
}

.footer-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-icon:hover {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright,
.footer-made {
    font-size: 13px;
    color: #999999;
}

.footer-made i {
    color: #ff6b6b;
    animation: heartbeat 1.5s ease-in-out infinite;
}

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

/* Responsive Design for New Sections */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contact-info {
        padding-right: 0;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .section-header {
        gap: 15px;
    }

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

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

@media (max-width: 640px) {
    .about-section,
    .blog-section,
    .skills-section,
    .contact-section {
        padding: 0 20px;
        margin: 60px auto;
    }

    .section-header {
        margin-bottom: 40px;
    }

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

    .section-heading {
        font-size: 22px;
    }

    /* About Section - Mejor legibilidad en móvil */
    .about-intro {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 20px;
        text-align: left;
    }

    .about-description {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 30px;
        text-align: left;
    }

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

    .stat-number {
        font-size: 36px;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .skill-card {
        padding: 25px 15px;
    }

    .skill-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .skill-title {
        font-size: 15px;
        margin-bottom: 0;
    }

    .skill-description {
        display: none;
    }

    .footer {
        padding: 40px 20px 20px;
    }

    .footer-brand {
        max-width: 100%;
    }
}

