/* Reset y estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Changa', sans-serif;
    min-height: 100vh;
    padding: 20px;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Header */
header {
    background: linear-gradient(135deg, #4c8056 0%, #3a6442 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    margin-bottom: 20px;
}

.logo-img {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Formulario de contacto */
.contact-form {
    padding: 40px 30px;
    background: white;
}

.contact-form h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Changa', sans-serif;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4c8056;
    background: white;
    box-shadow: 0 0 0 3px rgba(76, 128, 86, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* Botón */
.btn {
    width: 100%;
    background: linear-gradient(135deg, #4c8056 0%, #3a6442 100%);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Changa', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 128, 86, 0.3);
}

.btn:active {
    transform: translateY(0);
}

/* Información de contacto */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 30px;
    background: #f8f9fa;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #4c8056;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card h3 {
    color: #4c8056;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.info-card i {
    margin-right: 8px;
    color: #4c8056;
}

.info-card p {
    color: #666;
    font-size: 1rem;
}


/* Contenido de Política de Privacidad */
.content {
    padding: 40px 30px;
    background: white;
}

.content h2 {
    color: #4c8056;
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
    font-weight: 600;
    border-left: 4px solid #4c8056;
    padding-left: 15px;
}

.content h2:first-child {
    margin-top: 0;
}

.content p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.content p:last-child {
    margin-bottom: 0;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 25px 30px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

.back-btn {
    background: #4c8056;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #3a6442;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .container {
        border-radius: 15px;
    }

    header {
        padding: 30px 20px;
    }

    header h1 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .contact-form h2 {
        font-size: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px;
    }
}