/* CSS Variables for Theme */
:root {
    --primary: #FFB800; /* Industrial Yellow */
    --primary-hover: #E5A600;
    --dark-bg: #121212;
    --darker-bg: #0A0A0A;
    --card-bg: #1E1E1E;
    --text-main: #F5F5F5;
    --text-muted: #A0A0A0;
    --border-color: #333333;
    
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 160px;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    padding-top: 160px; /* Offset for even larger fixed header */
}

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

.text-accent {
    color: var(--primary);
}

.text-center {
    text-align: center;
}

.bg-darker {
    background-color: var(--darker-bg);
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: #000;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    display: block;
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

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

header.scrolled .nav-container {
    height: 90px;
}

header.scrolled .brand-logo {
    height: 70px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.logo-text {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
    transition: var(--transition);
}

.logo-accent {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 25px;
    margin-left: auto;
    margin-right: 30px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: var(--transition);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background-image: url('galeria-nueva-1.jpg');
    background-size: cover;
    background-position: top center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(255, 184, 0, 0.15);
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Section Spacing */
.section {
    padding: 100px 0;
}

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

.service-card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
}

/* Fleet */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.fleet-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.fleet-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.fleet-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-bottom: 4px solid var(--primary);
}

.fleet-gallery {
    display: flex;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.fleet-gallery::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.fleet-gallery img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    scroll-snap-align: start;
}

.gallery-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.dot.active {
    background-color: var(--primary);
}

.fleet-content {
    padding: 30px;
}

.fleet-content h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.fleet-specs {
    list-style: none;
    margin-bottom: 25px;
}

.fleet-specs li {
    margin-bottom: 10px;
    color: var(--text-muted);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.fleet-specs li strong {
    color: var(--text-main);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding: 10px 0 30px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        cursor: grab;
    }

    .gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .gallery-grid:active {
        cursor: grabbing;
    }

    .gallery-item {
        flex: 0 0 85%;
        scroll-snap-align: center;
        height: 350px;
    }
}

.gallery-item {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Guarantee */
.guarantee-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.guarantee-text {
    flex: 1;
}

.check-list {
    list-style: none;
    margin-top: 30px;
}

.check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
    background: rgba(255, 184, 0, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mexico-map-container {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mexico-map-img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 184, 0, 0.2));
}

.map-caption {
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-box {
    background-color: var(--primary);
    color: #000;
    padding: 30px 15px;
    text-align: center;
    border-radius: 8px;
    font-weight: bold;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
}

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

.contact-details {
    margin-top: 40px;
}

.contact-item {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.contact-item strong {
    color: var(--text-main);
    display: block;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-form {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--dark-bg);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: 4px;
    font-family: var(--font-main);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-status {
    margin-top: 15px;
    text-align: center;
    font-weight: 600;
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

.logo-footer {
    margin-bottom: 25px;
    justify-content: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.social-link {
    color: var(--text-muted);
    transition: var(--transition);
}

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

/* Floating WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 3rem; }
    .guarantee-content { flex-direction: column; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    body {
        padding-top: 100px;
    }

    .logo { font-size: 1.5rem; gap: 10px; }
    .brand-logo { height: 70px; }

    .nav-container {
        height: 100px;
    }
    
    .nav-links {
        position: fixed;
        top: 100px;
        left: 0;
        width: 100%;
        height: calc(100vh - 100px);
        background-color: var(--dark-bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-left: 0;
        transform: translateX(-100%);
        visibility: hidden;
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }

    header.scrolled .nav-container {
        height: 80px;
    }

    header.scrolled .nav-links {
        top: 80px;
        height: calc(100vh - 80px);
    }

    .nav-container .btn-primary { display: none; }
    .mobile-menu-btn { display: block; }
    
    .hero-content h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    
    .guarantee-stats { grid-template-columns: 1fr; }
}
/* Location Section */
.location-container {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-wrapper {
    width: 100%;
    filter: grayscale(0.5) contrast(1.2); /* Subtle industrial look */
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Slightly visible by default */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8; /* Persistent indicator */
    transition: var(--transition);
    z-index: 5;
    color: #000;
    font-weight: 800;
    font-size: 1.2rem;
    text-align: center;
    padding: 20px;
    backdrop-filter: blur(1px);
}

.map-overlay span {
    background-color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: pulse-simple 2s infinite;
}

@keyframes pulse-simple {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 184, 0, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 184, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 184, 0, 0); }
}

.map-wrapper:hover .map-overlay {
    background: rgba(0, 0, 0, 0.1);
    opacity: 1;
}

.map-wrapper:hover .map-overlay span {
    transform: scale(1.1);
}

.map-wrapper iframe {
    pointer-events: none; /* Makes the whole area clickable for the link */
}

.address-item-with-map {
    display: flex;
    align-items: center;
    gap: 20px;
}

.address-text {
    flex: 1;
}

.address-map-thumbnail {
    flex: 0 0 100px;
}

.map-thumb {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.map-thumb:hover {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(255, 184, 0, 0.2);
}

.map-link-wrapper {
    text-decoration: none;
    display: block;
}

.map-wrapper:hover {
    filter: grayscale(0);
}

.location-footer {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.location-info p {
    color: var(--text-muted);
}

.location-actions {
    display: flex;
    gap: 15px;
}

/* Address Link styling */
.address-link {
    color: inherit;
    text-decoration: none;
    display: block;
    transition: var(--transition);
    padding: 10px 0;
}

.address-link:hover {
    color: var(--primary);
}

.link-icon {
    font-size: 0.9rem;
    margin-left: 5px;
    opacity: 0.7;
}

/* Responsive Location */
@media (max-width: 768px) {
    .location-footer {
        flex-direction: column;
        text-align: center;
    }
    
    .location-actions {
        width: 100%;
        flex-direction: column;
    }
}

/* Reviews Section */
.google-rating-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
}

.google-logo-small {
    width: 80px;
}

.stars-outer {
    font-size: 1.8rem;
    color: #f4b400; /* Google Yellow */
}

.rating-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: -10px;
}

.rating-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.reviews-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.review-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    max-width: 500px;
    width: 100%;
    position: relative;
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
    font-size: 1.2rem;
}

.user-details h4 {
    font-size: 1.1rem;
    margin: 0;
}

.stars-mini {
    color: #f4b400;
    font-size: 0.9rem;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-text {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.4;
}

.google-icon-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .reviews-container {
        flex-direction: column;
        align-items: center;
}

/* Articles Section */
.articles-section {
    background-color: var(--dark-bg);
}

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

.article-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

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

.article-category {
    display: inline-block;
    background-color: rgba(255, 184, 0, 0.15);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    align-self: flex-start;
}

.article-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    flex: 1;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--card-bg);
    margin: auto;
    padding: 40px;
    border: 1px solid var(--primary);
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    color: var(--text-muted);
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary);
    text-decoration: none;
}

.modal-header h2 {
    color: var(--primary);
    margin-bottom: 20px;
    padding-right: 30px;
    font-size: 1.8rem;
}

.modal-body {
    color: var(--text-main);
    line-height: 1.7;
}

.modal-body p {
    margin-bottom: 20px;
}

.modal-body h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #fff;
}

.article-list {
    margin-bottom: 20px;
    padding-left: 20px;
}

.article-list li {
    margin-bottom: 10px;
}

.article-list strong {
    color: var(--primary);
}

.article-tip {
    background-color: rgba(255, 184, 0, 0.1);
    border-left: 4px solid var(--primary);
    padding: 20px;
    margin-top: 30px;
    border-radius: 0 8px 8px 0;
}

.article-tip strong {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
}

/* Notas Comerciales Cards */
.notas-section {
    background-color: var(--darker-bg);
}

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

.nota-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.nota-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.nota-cover-wrapper {
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    border-radius: 12px 12px 0 0;
}

.nota-cover {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.nota-card:hover .nota-cover {
    transform: scale(1.06);
}

.nota-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.65) 100%);
    pointer-events: none;
}

.nota-tag {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background-color: var(--primary);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 50px;
    z-index: 3;
}

.nota-body {
    padding: 26px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.nota-body h3 {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 12px;
    color: #fff;
}

.nota-body p {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 20px;
}

.nota-read-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.88rem;
    transition: gap 0.2s ease;
}

.nota-card:hover .nota-read-link {
    gap: 10px;
}

@media (max-width: 992px) {
    .notas-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .notas-grid { grid-template-columns: 1fr; }
    .nota-cover-wrapper { height: 200px; }
}

