* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #43ACD6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: transparent;
    border-radius: 15px;
    margin-top: 130px;
    margin-bottom: 20px;
}

.header {
    text-align: center;
    padding: 5px 0;
}

.logo {
    max-width: 250px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 10px;
}

.logo-placeholder {
    width: 250px;
    height: 120px;
    background: linear-gradient(45deg, #43ACD6, #357abd);
    margin: 0 auto 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.main-content {
    margin-bottom: 20px;
}

.description {
    text-align: center;
    font-size: 1.2em;
    line-height: 1.8;
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 5px solid #43ACD6;
    color: #555;
}

.contact-section {
    background: #ffffff;
    border-radius: 15px;
    padding: 15px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.contact-section h2 {
    color: #43ACD6;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.8em;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.contact-info {
    background: #f8f9fa;
    padding: 34px 25px;
    border-radius: 10px;
}

.contact-item {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    color: #43ACD6;
}

.contact-item strong {
    color: #43ACD6;
    margin-right: 10px;
}

.map-container {
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #e0e0e0, #c0c0c0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 16px;
    text-align: center;
    padding: 20px;
}

.footer {
    text-align: center;
      padding: 0px;
      background: transparent;
      color: #43ACD6;
      border-radius: 10px;
      font-size: 13px;
      margin-top: 16px;
}


/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 3% auto;
    padding: 30px;
    border-radius: 10px;
    max-width: 90%;
    overflow-y: auto;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
}

.modal h2 {
    color: #43ACD6;
    margin-bottom: 0px !important;
    margin-top: 0px;
    font-size: 17px !important;
}

.modal p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

@media (max-width: 480px) {
    .footer-link {
        display: block;
        margin: 5px 0;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 15px;
        border-radius: 10px;
    }

    .logo-placeholder {
        width: 200px;
        height: 100px;
        font-size: 20px;
    }

    .description {
        font-size: 1.1em;
        padding: 20px;
    }

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

    .contact-section {
        padding: 20px;
    }

    .contact-item {
        padding: 12px;
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .map-container {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        margin: 5px;
        padding: 10px;
    }

    .header {
        padding: 20px 0;
    }

    .logo-placeholder {
        width: 180px;
        height: 90px;
        font-size: 18px;
    }

    .description {
        font-size: 1em;
        padding: 15px;
    }

    .contact-section h2 {
        font-size: 1.5em;
    }

    .contact-info {
        padding: 15px;
    }

    .contact-item {
        padding: 10px;
    }
    .barralegal{
        display: none;
    }
}