@charset "UTF-8";

@import url(https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,400,300,500,600,700&subset=latin,latin-ext);
@import "animate/animate.min.css";
@import "fontawesome/font-awesome.min.css"; 
/* Reset y estilos generales */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
            background-color: #f5f5f5;
        }
        .no-valido {
			font-size: 14px;
			font-family: sans-serif;
			margin: 23px 11px;
			display: block;
			color: #d14;
		}
		.form-data small {
			font-size: 14px;
			font-family: sans-serif;
			margin: 23px 11px;
			display: block;
			color: #d14;
		}
        /* Header */
        header {
            background: linear-gradient(135deg, #1e5799 0%, #207cca 100%);
            padding: 20px 0;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        header img {
            height: 50px;
            width: auto;
        }
        
        /* Contenedor principal */
        .content {
            max-width: 1000px;
            margin: 30px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        @media (min-width: 768px) {
            .content {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        /* Calendario - Manteniendo clases originales */
        .pn_calendar {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .pn_calendar_list_container {
            margin-bottom: 20px;
        }
        
        .month-move {
            display: flex;
            justify-content: space-between;
            align-items: center;
            list-style: none;
            margin-bottom: 20px;
        }
        
        .month-move .titulo h2 {
            color: #1e5799;
            font-size: 1.3rem;
            margin: 0;
        }
        
        .month-move .prev a, 
        .month-move .next a {
            color: #1e5799;
            font-size: 1.2rem;
            text-decoration: none;
            padding: 5px 10px;
        }
        
        .pn_calendar_list {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 8px;
            list-style: none;
        }
        
        .pn_calendar_list .daynames {
            font-weight: bold;
            text-align: center;
            color: #666;
            font-size: 0.9rem;
            padding: 5px;
        }
        
        .pn_calendar_list a {
            text-align: center;
            padding: 10px 5px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.2s ease;
            display: block;
            text-decoration: none;
            color: #333;
        }
        
        .pn_calendar_list a:hover {
            background: #f0f7ff;
        }
        
        .other_month {
            color: #ccc;
        }
        
        /*.pn_past_day {
            color: #ccc;
            cursor: not-allowed;
        }*/
		.pn_past_day {
			background-color: #fff;
			color: #ccc !important;
			font-weight: 100 !important;
			text-decoration: line-through !important;
		}
        
        .pn_inactive_day {
            color: #ccc;
            cursor: not-allowed;
        }
        
        .pn_day {
            color: #fff !important;
			background:green;
        }
        
        .day-select {
            background: #1e5799 !important;
            color: white !important;
        }
        
        /* Formulario */
        .form-data {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .form-data h3 {
            color: #1e5799;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .form-data label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #555;
        }
        
        .form-data input, 
        .form-data textarea, 
        .form-data select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: all 0.3s ease;
            margin-bottom: 15px;
        }
        
        .form-data input:focus, 
        .form-data textarea:focus, 
        .form-data select:focus {
            border-color: #1e5799;
            outline: none;
            box-shadow: 0 0 0 3px rgba(30, 87, 153, 0.2);
        }
        
        .form-data input:valid {
            border-color: #5cb85c;
        }
        
        .form-data input:invalid {
            border-color: #d9534f;
        }
        
        .error {
            color: #d9534f;
            font-size: 0.85rem;
            margin-top: -10px;
            margin-bottom: 15px;
            display: none;
        }
        
        .no-valido {
            display: block !important;
        }
        
        .novalid {
            border-color: #d9534f !important;
        }
        
        #enviar-reserva {
            background: #ff6b00;
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
        }
        
        #enviar-reserva:hover {
            background: #e05d00;
            transform: translateY(-2px);
        }
        
        #enviar-reserva:disabled {
            background: #ccc;
            cursor: not-allowed;
        }
        
        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        
        .modal-content {
            background: white;
            padding: 30px;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
        }
        
        .modal-content h3 {
            color: #1e5799;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        
        .modal-content p {
            margin-bottom: 15px;
        }
        
        .modal-content strong {
            color: #333;
        }
        
        .modal-content a {
            display: inline-block;
            background: #1e5799;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            margin-top: 20px;
            transition: all 0.3s ease;
        }
        
        .modal-content a:hover {
            background: #16467e;
        }
        
        /* WhatsApp flotante */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 100;
            transition: all 0.3s ease;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            background: #1da851;
        }
        
        /* Fondo modal */
        #back {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 999;
            display: none;
        }