/* ===== FUENTES ===== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&display=swap');



/* ===== VARIABLES Y RESET ===== */
:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-color: #333;
    --text-light: #7f8c8d;
    --white: #fff;
    --black: #121111;
    --gradient-primary: linear-gradient(45deg, #3498db, #2980b9);
    --gradient-accent: linear-gradient(45deg, #e74c3c, #c0392b);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-bg: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    --shadow-light: 0 2px 20px rgba(0,0,0,0.1);
    --shadow-medium: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-heavy: 0 15px 35px rgba(0,0,0,0.1);
    --border-radius: 25px;
    --border-radius-sm: 8px;
    --transition: all 0.3s ease;
    background-color: #121111;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

      font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700px;
  font-style: normal;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    padding-top: 80px;
    
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER CON FONDO ===== */
.header-with-bg {
    height: 900px;
    overflow: hidden;
    position: relative;
}

.header-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.header-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.header-content.scrolled {
    background: rgba(0, 0, 0, 0.9);
    box-shadow: var(--shadow-light);
}

/* ===== FLYER ===== */
.flyer-container {
    position: absolute;
    top: 150px;
   
    z-index: 4;
    width: 100%;
    text-align: center;
    animation: slideInRight 1s ease-out;
   
}

.flyer-image {
    width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.flyer-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== NAVEGACIÓN ===== */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo-img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
   
   
    
}

.nav-link i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: var(--white);
    border-radius: 50%;
}

.contact-btn {
    background: var(--gradient-accent);
    color: var(--white) !important;
    padding: 0.7rem 1.5rem !important;
    border: none !important;
}

.contact-btn:hover {
    background: linear-gradient(45deg, #c0392b, #e74c3c) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4) !important;
}

/* ===== COMPONENTES REUTILIZABLES ===== */
.btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h1 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SECCIÓN INSCRIPCION ===== */

.inscrip-section{
    padding: 80px 0;
    background:#000000;
    text-align: center;
    
}

.inscrip-section h1{
    font-size: 50px;
}

.inscrip-section a{
    text-decoration: none;
    color: #c3cfe2;
}

.inscrip-section .section-header img{
    width: 30%;
}

.inscrip-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.inscrip-section h1:hover{
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}



/* ===== SECCIÓN INGENIERÍA EN FLUJO ===== */
.ing-flow-section {
    padding: 80px 0;
    background:#000000;
}

.ing-flow-section .section-header 
{
    text-align: center;
    width: 100%;
}
.ing-flow-section .section-header img
{
    
    width: 30%;
}

.flow-sub label
{
    text-align: center;
    color:#e3e3e3;
    font-size: 200%;
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.flow-item {
    perspective: 1000px;
}

.flow-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
    height: 400px;
}

.flow-image-container-logo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
   
}

.flow-image-logo 
{
    width: 70%;
}

.flow-image-container:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.flow-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}




.flow-image-container:hover .flow-image {
    transform: scale(1.1);
}

.flow-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(44, 62, 80, 0) 0%, rgba(44, 62, 80, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

.flow-image-container:hover .flow-overlay {
    opacity: 1;
}

.flow-content {
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

.flow-image-container:hover .flow-content {
    transform: translateY(0);
}

.flow-content h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.flow-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

.flow-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.flow-info h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.flow-info p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ===== SECCIÓN CARRERA ===== */
.info_carrera {
    padding: 80px 0;
    background:#e3e3e3;
    display: flex;
}



/* ===== HEADER CARRERA RESPONSIVE ===== */
.section-header-carrera {
    position: relative;
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
}

.section-header-carrera img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

/* Efectos hover para la imagen */
.section-header-carrera img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* ===== RESPONSIVE HEADER CARRERA ===== */
@media (max-width: 1200px) {
    .section-header-carrera img {
        max-width: 90%;
    }
}

@media (max-width: 992px) {
    .section-header-carrera {
        margin-bottom: 30px;
    }
    
    .section-header-carrera img {
        max-width: 95%;
        border-radius: 12px;
    }
}

@media (max-width: 768px) {
    .section-header-carrera {
        margin-bottom: 25px;
    }
    
    .section-header-carrera img {
        max-width: 100%;
        border-radius: 10px;
    }
    
    /* Efectos reducidos en móvil para mejor rendimiento */
    .section-header-carrera img:hover {
        transform: none;
    }
}

@media (max-width: 576px) {
    .section-header-carrera {
        margin-bottom: 20px;
    }
    
    .section-header-carrera img {
        border-radius: 8px;
        box-shadow: var(--shadow-light);
    }
}

@media (max-width: 400px) {
    .section-header-carrera img {
        border-radius: 6px;
    }
}

/* Versión alternativa si necesitas que la imagen sea más grande */
.section-header-carrera.hero-img img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
}

/* Responsive para versión hero */
@media (max-width: 768px) {
    .section-header-carrera.hero-img img {
        max-height: 300px;
    }
}

@media (max-width: 576px) {
    .section-header-carrera.hero-img img {
        max-height: 250px;
    }
}

@media (max-width: 400px) {
    .section-header-carrera.hero-img img {
        max-height: 200px;
    }
}


/* ===== SECCIÓN INFORMACIÓN DE CARRERA ===== */
.info_carrera {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.info-section {
    margin-bottom: 80px;
}

.info-section:last-child {
    margin-bottom: 0;
}

/* Grid Principal - Sección 1 */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

/* Columnas */
.info-column,
.image-column,
.map-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Tarjetas de Información */
.info-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.info-icon {
    background: var(--gradient-primary);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.2rem;
}

.info-content h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-content p {
    color: var(--text-light);
    margin-bottom: 5px;
    line-height: 1.5;
}

/* Precios */
.pricing {
    width: 100%;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.price-item:last-child {
    border-bottom: none;
}

.category {
    color: var(--text-color);
    font-weight: 500;
}

.amount {
    color: var(--primary-color);
    font-weight: 700;
}

/* Pistas */
.tracks {
    width: 100%;
}

.track-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.track-item:last-child {
    border-bottom: none;
}

.distance {
    background:#e35909;
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.description {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    
}

/* Imagen Principal */
.main-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    height: 500px;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.main-image-container:hover .main-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 30px;
    text-align: center;
}

.image-overlay h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

/* Mapa */
.map-container {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.map-container h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.3rem;
}

.map-placeholder {
    margin-bottom: 20px;
}

.location-info {
    margin-top: 20px;
}

.location-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.location-info i {
    color: var(--primary-color);
    width: 20px;
}

/* ===== SECCIÓN 2: REGLAMENTO ===== */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.rules-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    height: 100%;
}

.rules-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.rules-card h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.rules-card h3 i {
    color: var(--primary-color);
}

.rules-card ul {
    list-style: none;
    padding: 0;
}

.rules-card li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.rules-card li:before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.rules-card li:last-child {
    border-bottom: none;
}

/* ===== SECCIÓN 3: CONTACTO ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    background: var(--gradient-primary);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.contact-item h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-form-mini h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.quick-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-contact input,
.quick-contact textarea {
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    transition: var(--transition);
}

.quick-contact input:focus,
.quick-contact textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* ===== RESPONSIVE INFO CARRERA ===== */
@media (max-width: 1200px) {
    .info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .image-column {
        grid-column: 1 / -1;
        order: -1;
    }
    
    .main-image-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .info_carrera {
        padding: 60px 0;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .rules-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .main-image-container {
        height: 300px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .map-container {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .info_carrera {
        padding: 40px 0;
    }
    
    .info-section {
        margin-bottom: 60px;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .main-image-container {
        height: 250px;
    }
    
    .image-overlay {
        padding: 20px;
    }
    
    .image-overlay h3 {
        font-size: 1.3rem;
    }
}

/* ===== PÁGINA EN CONSTRUCCIÓN ===== */
.construction-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    background: var(--gradient-hero);
    color: var(--white);
    text-align: center;
}

.construction-content {
    max-width: 600px;
    margin: 0 auto;
}

.construction-icon {
    margin-bottom: 40px;
}

.tool-animation {
    position: relative;
    display: inline-block;
    font-size: 4rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.sparks {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.spark {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    margin: 0 2px;
    animation: sparkle 1.5s infinite;
}

.spark:nth-child(2) { animation-delay: 0.5s; }
.spark:nth-child(3) { animation-delay: 1s; }

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-10px);
    }
}

/* ===== COMPONENTES ADICIONALES ===== */
.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    margin: 2rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

input, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.alert {
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

footer {
    background: var(--secondary-color);
    color: #7f8c8d;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
    font-size: 30px;
    
}
footer a
{
    color: #7f8c8d;
 text-decoration: none;
}

/* ===== MENÚ HAMBURGUESA ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .header-with-bg { height: 400px; }
    .flyer-container { width: 100%; }
    .flyer-image{width: 200px;}
    .flow-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
}

@media (max-width: 992px) {
    .header-with-bg { height: 400px; }
    .flyer-container { 
        width:100%;
        top: 60px;
        
    }
    .flyer-image{width: 200px;}
}

@media (max-width: 768px) {
    body { padding-top: 70px; }
    
    .header-with-bg { height: 400px; }
    .flyer-container { 
        width: 100px;
        top: 60px;
        
    }
    .flyer-image{width: 200px;}
    
    .hamburger { display: flex; }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        gap: 0;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active { left: 0; }
    
    .nav-item { width: 100%; text-align: center; }
    
    .nav-link {
        justify-content: center;
        padding: 1.5rem !important;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .nav-link:hover::after { display: none; }
    .logo-img { height: 60px; }
    
    /* Animación hamburguesa */
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Ajustes de secciones */
    .ing-flow-section { padding: 60px 0; }
    .section-header h1 { font-size: 2.5rem; }
    .flow-grid { grid-template-columns: 1fr; gap: 20px; }
    .flow-image-container { height: 350px; }
    .flow-info { padding: 30px 20px; }
    .flow-info h2 { font-size: 1.7rem; }
}

@media (max-width: 576px) {
    .header-with-bg { height: 350px; }
    .flyer-container { 
        width: 200px;
        top: 60px;
        left: 15px;
    }
    
    .ing-flow-section { padding: 40px 0; }
    .section-header h1 { font-size: 2rem; }
    .section-header p { font-size: 1rem; }
    .flow-image-container { height: 300px; }
    .flow-content h3 { font-size: 1.3rem; }
    .flow-content p { font-size: 0.9rem; }
    
    .construction-section { padding: 60px 20px; }
    .construction-text h1 { font-size: 2.5rem; }
}

@media (max-width: 400px) {
    .header-with-bg { height: 300px; }
    .flyer-container { 
        width: 200px;
        top: 60px;
        left: 10px;
    }
    
    .container { padding: 0 15px; }
    .construction-text h1 { font-size: 2rem; }
    .tool-animation { font-size: 3rem; }
}