

:root {
    --primary-color: #e10600; /* Rojo F1 */
    --secondary-color: #15151e; /* Azul oscuro/negro */
    --accent-color: #ff8700; /* Naranja para acentos */
    --light-gray: #f5f5f5;
    --text-color: #333;
    --text-light: #6c757d;
    --speed-angle: -6deg; /* Ángulo para elementos con efecto de velocidad */
}

/* General */
body {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    background-color: #232329; /* Fondo oscuro pero no negro puro */
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(225, 6, 0, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 90% 80%, rgba(255, 135, 0, 0.03) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(var(--speed-angle), 
        transparent, 
        transparent 100px, 
        rgba(255, 255, 255, 0.02) 100px, 
        rgba(255, 255, 255, 0.02) 102px);
    pointer-events: none;
    z-index: -1;
    animation: backgroundShift 60s linear infinite;
}

@keyframes backgroundShift {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #b6050a;
}

.btn {
    border-radius: 30px;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #c6050a;
    border-color: #c6050a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(225, 6, 0, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(225, 6, 0, 0.2);
}

/* Efectos de velocidad */
.speed-effect {
    position: relative;
    overflow: hidden;
}

.speed-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(var(--speed-angle), transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transform: skewX(var(--speed-angle));
    animation: speedEffect 2.5s infinite linear;
    z-index: 1;
}

@keyframes speedEffect {
    100% {
        left: 200%;
    }
}

/* Header y Navegación */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ad0500 100%);
    color: white;
    position: relative;
}

.header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(var(--speed-angle), var(--primary-color), transparent 80%);
    z-index: 1;
}

.navbar {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-brand i {
    margin-right: 5px;
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: white;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    width: 80%;
}

.dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
    border-radius: 5px;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.dropdown-item i {
    margin-right: 8px;
  
}

.dropdown-item:hover {
    background-color:#9a0000;
    color: white;
}

.hero-section {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    margin-bottom: 40px;
    position: relative;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff0000, #e10600, #990000, #e10600, #ff0000);
    background-size: 200% 100%;
    animation: gradientFlow 3s ease infinite;
}


.hero-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9);
}

.hero-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(225, 6, 0, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    color: white;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-left: 5px solid var(--primary-color);
    border-radius: 0 15px 15px 0;
    backdrop-filter: blur(5px);
    max-width: 100%;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(90deg, #ffffff, #e10600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    animation: textGradient 5s ease infinite;
}

@keyframes textGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-text .lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 90%;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.hero-buttons .btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Sección de características */
.features {
    background-color: #ffffff;
}

.feature-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid transparent;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
    color: white;
    transform: rotate(360deg);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Próximas carreras */
.upcoming-races {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.upcoming-races::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/track-pattern.png');
    background-size: 300px;
    opacity: 0.05;
    z-index: 0;
}

.race-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border-left: 5px solid var(--primary-color);
    padding: 1.5rem;
}

.race-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.race-date {
    background-color: var(--primary-color);
    color: white;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.race-flag {
    width: 40px;
    height: 30px;
    margin-bottom: 1rem;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.race-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.race-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.countdown {
    background-color: var(--light-gray);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Últimas noticias */
.latest-news {
    background-color: #ffffff;
}

.main-news {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 1.5rem;
    height: 100%;
}

.main-news:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.main-news img {
    border-radius: 10px;
    margin: -1.5rem;
    margin-bottom: 1.5rem;
    width: calc(100% + 3rem);
    max-height: 300px;
    object-fit: cover;
}

.news-category {
    background-color: var(--accent-color);
    color: white;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.news-date {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.news-item {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.news-item img {
    height: 100%;
    object-fit: cover;
}

.news-item-content {
    padding: 1rem;
}

.news-item-content h4 {
    font-size: 1rem;
    margin: 0.5rem 0;
    line-height: 1.3;
}

.news-item-content .news-date {
    margin-bottom: 0;
}

.news-item-content .news-category {
    font-size: 0.65rem;
    padding: 2px 8px;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(var(--speed-angle), transparent 20%, var(--secondary-color));
    z-index: 1;
}

.footer h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer h5 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer p {
    opacity: 0.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.newsletter-form .form-control {
    border-radius: 30px 0 0 30px;
    border: none;
    padding: 0.6rem 1.2rem;
    height: auto;
}

.newsletter-form .btn {
    border-radius: 0 30px 30px 0;
}

hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.copyright, .disclaimer {
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .hero-text {
        max-width: 100%;
        margin: 0 1rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text .lead {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .feature-card, .race-card, .main-news, .news-item {
        margin-bottom: 1.5rem;
    }
    
    .footer {
        padding-top: 3rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: auto;
        min-height: calc(100vh - 73px);
    }
    
    .hero-text {
        padding: 2rem 1rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Efecto de checkered flag */
.checkered-pattern {
    position: relative;
    overflow: hidden;
}

.checkered-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, 
            rgba(0, 0, 0, 0.05) 25%, 
            transparent 25%, 
            transparent 75%, 
            rgba(0, 0, 0, 0.05) 75%, 
            rgba(0, 0, 0, 0.05)),
        repeating-linear-gradient(45deg, 
            rgba(0, 0, 0, 0.05) 25%, 
            transparent 25%, 
            transparent 75%, 
            rgba(0, 0, 0, 0.05) 75%, 
            rgba(0, 0, 0, 0.05));
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    opacity: 0.5;
    z-index: 0;
}

/* Animaciones adicionales */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Estilos para página de equipos, pilotos, etc. - Base común */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ad0500 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    margin-bottom: 3rem;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(var(--speed-angle), var(--primary-color), transparent 80%);
    z-index: 1;
}

.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 300px;
    object-fit: cover;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary {
    background-color: var(--primary-color);
}

/* Estilos para la página de comparador y detalles */
.stats-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stats-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stats-label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.progress {
    height: 8px;
    border-radius: 4px;
    margin-bottom: 1rem;
    background-color: var(--light-gray);
}

.progress-bar {
    background-color: var(--primary-color);
    border-radius: 4px;
}

/* Estilos para tablas */
.table-container {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.table {
    margin-bottom: 0;
}

.table thead th {
    border-top: none;
    border-bottom: 2px solid var(--primary-color);
    background-color: var(--light-gray);
    padding: 1rem;
    font-weight: 700;
}

.table tbody td {
    padding: 1rem;
    vertical-align: middle;
    border-color: var(--light-gray);
}

.table-hover tbody tr:hover {
    background-color: rgba(225, 6, 0, 0.05);
}

/* Estilos específicos para circuitos */
.circuit-layout {
    max-width: 100%;
    height: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.circuit-layout:hover {
    opacity: 1;
}

/* Sección de Banner */
.banner-section {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    margin-bottom: 40px;
   
}
.banner-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff0000, #e10600, #990000, #e10600, #ff0000);
    background-size: 200% 100%;
    animation: gradientFlow 3s ease infinite;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.banner-content {
    max-width: 800px;
    color: #ffffff;
}

.banner-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.banner-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.banner-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #e10600;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid #e10600;
}

.banner-button:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}


.banner-container:hover .banner-image {
    transform: scale(1.05);
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .banner-container {
        height: 400px;
    }
    
    .banner-title {
        font-size: 36px;
    }
    
    .banner-subtitle {
        font-size: 18px;
    }
    
    .banner-button {
        padding: 10px 25px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .banner-container {
        height: 300px;
    }
    
    .banner-title {
        font-size: 28px;
    }
    
    .banner-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .banner-button {
        padding: 8px 20px;
        font-size: 14px;
    }
}
.pajaro-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    padding: 5rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pajaro-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.pajaro-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.pajaro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

.pajaro-content .btn {
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(225, 6, 0, 0.3);
    transition: all 0.3s ease;
}

.pajaro-content .btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.pajaro-content .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(225, 6, 0, 0.4);
}

.pajaro
-content .btn:hover i {
    transform: translateX(5px);
}


