/* css/styles.css */
/* Estilos básicos - los estilos específicos están en cada página */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Estilos generales para enlaces */
a {
    color: #ff6600;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #e55a00;
}

/* Estilos para botones */
.btn {
    display: inline-block;
    background: #ff6600;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #ff6600;
    transition: all 0.3s;
    cursor: pointer;
}

.btn:hover {
    background: transparent;
    color: #ff6600;
    transform: translateY(-2px);
}

/* Estilos para tarjetas */
.card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* Estilos para secciones */
.section {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5em;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ff6600;
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .section {
        padding: 40px 20px;
    }
    
    .section-title h2 {
        font-size: 2em;
    }
}