/* ========================================
   VARIABLES & RESET
======================================== */
:root {
    --primary: #1a1a1a;
    --secondary: #f4f4f4;
    --accent: #e63946;
    --accent-light: #ff4d5a;
    --text: #333;
    --text-light: #666;
    --white: #ffffff;
    --gray: #888;
    --gray-light: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-heavy: rgba(0, 0, 0, 0.3);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* ========================================
   MENU HAMBURGER
======================================== */
.menu-toggle {
    position: fixed;
    top: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    box-shadow: 0 4px 20px var(--shadow-heavy);
}

.menu-toggle:hover {
    transform: scale(1.1);
    background: var(--accent);
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ========================================
   MENU LATÉRAL
======================================== */
.side-menu {
    position: fixed;
    top: 0;
    left: -400px;
    width: 400px;
    height: 100vh;
    background: var(--primary);
    color: var(--white);
    z-index: 1000;
    transition: var(--transition);
    overflow-y: auto;
    box-shadow: 4px 0 30px var(--shadow-heavy);
}

.side-menu.active {
    left: 0;
}

.menu-header {
    padding: 6rem 2rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
}

.menu-list {
    padding: 2rem 0;
}

.menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-link {
    display: flex;
    align-items: center;
    padding: 1.25rem 2rem;
    gap: 1rem;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
    transform: scaleY(0);
    transition: var(--transition);
}

.menu-link:hover {
    background: rgba(255, 255, 255, 0.05);
    padding-left: 2.5rem;
}

.menu-link:hover::before {
    transform: scaleY(1);
}

.menu-link i {
    font-size: 1.2rem;
    width: 24px;
}

.menu-link .arrow {
    margin-left: auto;
    transition: var(--transition);
}

.has-submenu.active .arrow {
    transform: rotate(180deg);
}

.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
}

.has-submenu.active .submenu {
    max-height: 300px;
}

.submenu li {
    padding: 0.75rem 2rem 0.75rem 5rem;
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

.submenu li:hover {
    background: rgba(255, 255, 255, 0.05);
    padding-left: 5.5rem;
}

.menu-footer {
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
}

/* ========================================
   OVERLAY
======================================== */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    backdrop-filter: blur(5px);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   MAIN CONTENT
======================================== */
.main-content {
    position: relative;
    transition: var(--transition);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(230, 57, 70, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(230, 57, 70, 0.1) 0%, transparent 50%);
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(45, 45, 45, 0.7) 100%);
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1;
}

.title-line {
    display: block;
    overflow: hidden;
}

.title-line span {
    display: inline-block;
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    animation: fadeIn 1s ease-out 0.6s backwards;
}

.hero-description strong {
    color: var(--accent);
    font-weight: 600;
}

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

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.9s backwards;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.5);
}

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

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

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeIn 1s ease-out 1.2s backwards;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

/* ========================================
   SECTIONS
======================================== */
.section {
    padding: 8rem 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--secondary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-number {
    font-size: 6rem;
    font-weight: 700;
    color: rgba(230, 57, 70, 0.1);
    font-family: var(--font-heading);
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary);
    position: relative;
    z-index: 1;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

/* ========================================
   CONTENT GRID
======================================== */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text {
    max-width: 600px;
}

.lead {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.content-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

blockquote {
    border-left: 4px solid var(--accent);
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Images responsive */
.content-image img,
.card-image img,
.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: var(--transition);
    display: block;
}

.content-image {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.content-image img {
    transition: transform 0.6s ease;
}

.content-image:hover img {
    transform: scale(1.05);
}

.card-image img {
    border-radius: 0;
    aspect-ratio: 16/9;
    transition: transform 0.6s ease;
}

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

.profile-image {
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 10px 30px var(--shadow);
}

.profile-image img {
    aspect-ratio: 1;
    border-radius: 50%;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gray) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
}

.image-placeholder:hover::before {
    left: 100%;
}

.image-placeholder i {
    font-size: 4rem;
    opacity: 0.5;
}

/* ========================================
   CARDS GRID
======================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-heavy);
}

.card-image {
    position: relative;
    overflow: hidden;
}

.card-image .image-placeholder {
    border-radius: 0;
    aspect-ratio: 16/9;
}

.card-content {
    padding: 2rem;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.card-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-weight: 600;
    transition: var(--transition-fast);
}

.card-link:hover {
    gap: 1rem;
    color: var(--accent-light);
}

/* ========================================
   GALLERY SECTION
======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 10px 30px var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-heavy);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* ========================================
   ABOUT SECTION
======================================== */
.about-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-main {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.profile-image .image-placeholder {
    aspect-ratio: 1;
    border-radius: 50%;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.about-text .subtitle {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-section {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px var(--shadow);
    transition: var(--transition);
}

.about-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px var(--shadow-heavy);
}

.about-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-light);
}

.about-section-header i {
    font-size: 1.5rem;
    color: var(--accent);
}

.about-section-header h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.bibliography-list li,
.interviews-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bibliography-list li:last-child,
.interviews-list li:last-child {
    border-bottom: none;
}

.year,
.source {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.title {
    color: var(--text);
    font-size: 1rem;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

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

/* Large Tablets & Small Laptops (1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .section {
        padding: 6rem 0;
    }
    
    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .about-main {
        grid-template-columns: 200px 1fr;
        gap: 2rem;
    }
}

/* Tablets (768px) */
@media (max-width: 768px) {
    :root {
        font-size: 15px;
    }
    
    .side-menu {
        width: 320px;
        left: -320px;
    }
    
    .menu-toggle {
        top: 1rem;
        left: 1rem;
        width: 45px;
        height: 45px;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 5rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.5rem);
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-description br {
        display: none;
    }
    
    .scroll-indicator {
        bottom: 2rem;
        font-size: 0.75rem;
    }
    
    .section {
        padding: 5rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-number {
        font-size: 4rem;
        top: -1.5rem;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-grid.reverse {
        direction: ltr;
    }
    
    .lead {
        font-size: 1.2rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.25rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .about-main {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
        gap: 2rem;
    }
    
    .profile-image img {
        max-width: 200px;
        margin: 0 auto;
    }
    
    .about-sections {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    blockquote {
        padding-left: 1.5rem;
        font-size: 1.1rem;
    }
}

/* Mobile Large (576px) */
@media (max-width: 576px) {
    :root {
        font-size: 14px;
    }
    
    .side-menu {
        width: 280px;
        left: -280px;
    }
    
    .menu-header {
        padding: 5rem 1.5rem 1.5rem;
    }
    
    .menu-header h3 {
        font-size: 1.5rem;
    }
    
    .menu-link {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .submenu li {
        padding: 0.75rem 1.5rem 0.75rem 4rem;
        font-size: 0.85rem;
    }
    
    .menu-toggle {
        width: 40px;
        height: 40px;
    }
    
    .menu-toggle span {
        width: 20px;
    }
    
    .hero {
        min-height: 450px;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-number {
        font-size: 3rem;
        top: -1rem;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .section-title::after {
        width: 60px;
        height: 3px;
    }
    
    .content-text p {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .cards-grid {
        gap: 1.25rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-item {
        aspect-ratio: 16/9;
    }
    
    .card-content {
        padding: 1.25rem;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-description {
        font-size: 0.95rem;
    }
    
    .about-main {
        padding: 1.5rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .about-text .subtitle {
        font-size: 1rem;
    }
    
    .about-section {
        padding: 1.5rem;
    }
    
    .about-section-header h4 {
        font-size: 1.25rem;
    }
    
    blockquote {
        padding-left: 1rem;
        margin: 1.5rem 0;
        font-size: 1rem;
        border-left-width: 3px;
    }
    
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Mobile Small (380px) */
@media (max-width: 380px) {
    :root {
        font-size: 13px;
    }
    
    .side-menu {
        width: 260px;
        left: -260px;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 12vw, 3rem);
    }
    
    .section-title {
        font-size: clamp(1.25rem, 6vw, 1.75rem);
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Landscape Mode for Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 400px;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .section {
        padding: 3rem 0;
    }
}

/* Print Styles */
@media print {
    .menu-toggle,
    .side-menu,
    .overlay,
    .scroll-indicator,
    .hero-cta,
    .social-links,
    .footer-social {
        display: none;
    }
    
    .hero {
        height: auto;
        min-height: 300px;
    }
    
    .section {
        page-break-inside: avoid;
        padding: 2rem 0;
    }
}

