/*
Theme Name: Mi Tema Personalizado
Theme URI: https://uds.fal.mybluehost.me/
Author: Andrea Jimenez
Author URI: https://uds.fal.mybluehost.me/
Description: Tema personalizado para WordPress
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mi-tema
*/

html {
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fefefe;
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    overflow-x: hidden;
}

.header {
    background-color: #ef3548;
    width: 100vw;          
    min-height: 120px;
    display: flex;
    margin: 0 !important;
    margin-left: calc(-50vw + 50%) !important;  
    margin-right: calc(-50vw + 50%) !important;
    padding: 15px 0;
    justify-content: space-between;
    position: relative;
    box-sizing: border-box;
}

.site-content,
main,
article {
    max-width: 100%;
    margin: 0;
    padding: 0;
}
body {
    display: block;
}

.site-content {
    width: 100%;
    display: block;
    min-height: 60vh;
}


main {
    width: 100%;
    display: block;
}


header,
main,
footer {
    float: none;
    clear: both;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;  
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fefefe;
    margin: 0;      
    padding: 0;     
}

.header {
    background-color: #ef3548;
    width: 100%;
    min-height: 120px;
    display: flex;
    margin: 0;      
    padding: 15px 0;
    justify-content: space-between;
    position: relative; 
    left: 0;            
    right: 0;          
}

.site-content {
    width: 100%;
    display: block;
    min-height: 60vh;
    padding: 0;     
    margin: 0;     
}

main {
    width: 100%;
    display: block;
    margin: 0;      
    padding: 0;     
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 50px;
}

.logo img {
    height: 90px;       
    width: auto;
    max-height: 100px;
    object-fit: contain;
}

        .navbar {
            list-style: none;
            display: flex;
            gap: 50px;
            justify-items: right;
            margin-right: 20px;
            align-items: center;
            
        }

        .navbar a {
            display: flex;
            position: relative;
            text-decoration: none;
            color: #ffffff;
            font-size: 18px;
            font-weight: normal;
            padding-bottom: 5px; 
            transition: color 0.3s ease;
            align-items: center;
        }

        .navbar a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0%;
             height: 2px;
            background: #264773;
            transition: width 0.3s ease;
        }

        .navbar a:hover::after {
            width: 100%;
        }


        .navbar a:hover {
            color: #ffffff;

        }

.footer {
            background-color: #f0f0f5;
            padding: 30px 40px 30px;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            font-size: 0.95rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-section p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 10px;
            font-size: 1rem;
        }

        .footer-section a {
            color: #4A90E2;
            text-decoration: none;
        }

        .footer-section a:hover {
            text-decoration: underline;
        }

        .hours-section {
            text-align: center;
        }

        .hours-section h2 {
            font-size: 1.8rem;
            margin-bottom: 25px;
        }

        .hours-section p {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 30px;
        }

        .contact-email {
            margin-top: 15px;
        }

        .map-section {
            position: relative;
        }

        .map-container {
            width: 430px;
            height: 400px;
            min-height: 400px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .map-container iframe {
            width: 430px;
            height: 400px;
            border: 0;
        }

        .map-info {
            background: white;
            padding: 15px 20px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            margin-bottom: 15px;
        }

        .map-info h4 {
            color: #333;
            font-size: 1rem;
            margin-bottom: 5px;
        }

        .map-info p {
            color: #666;
            font-size: 0.9rem;
            margin: 0;
        }

        .map-info a {
            color: #4A90E2;
            font-size: 0.9rem;
            display: inline-block;
            margin-top: 8px;
        }

        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }

        .social-links a {
            display: inline-block;
            width: 60px;
            height: 60px;
        }

        .social-links img {
            width: 100%;
            height: 100%;
            transition: transform 0.3s ease;
        }

        .social-links a:hover img {
            transform: scale(1.1);
        }

        .footer-bottom {
            text-align: center;
            padding: 20px;
            background-color: #f0f0f5;
            color: #666;
            font-size: 0.9rem;
            border-top: 1px solid #e0e0e0;
        }

        @media (max-width: 1024px) {
            .footer {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .map-container {
                min-height: 350px;
            }
        }

        @media (max-width: 768px) {
            .footer {
                padding: 40px 20px;
            }

            .footer-section h2 {
                font-size: 2rem;
            }
        }

       

