
        
        .header-container {
            width: 100%;
            height: 132px;
            position: relative;
            overflow: hidden;
            background-color: #222;
            background-image: url('https://acervohistorico.smf.org.mx/img/fecundap-347925.jpg');
            background-size: cover;
            background-position: center;
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
        }
        
        .header-content {
            position: relative;
            z-index: 2;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
        }
        
        .logo-section {
            width: 25%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            /*padding: 10px;]*/
			padding-right: 30px;
			
        }
        
        .logo-section h3 {
            font-size: 16px;
            font-weight: 400;
            margin-bottom: 5px;
        }
        
        .logo-section h2 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .logo-icon {
            width: 40px;
            height: 40px;

            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .logo-icon svg {
            width: 24px;
            height: 24px;
            fill: white;
        }
        
        .photo-grid {
            width: 100%;
            height: 100%;
            display: flex;
            position: relative;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }
        
        .diamond-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            grid-gap: 5px;
            height: 100%;
            width: 95%;
           /* padding: 10px;*/
        }
        
        .diamond {
            position: relative;
            width: 90%;
            padding-bottom: 90%; /* Mantiene proporción cuadrada */
            overflow: hidden;
            transform: rotate(45deg);
            border: 1px solid white;
            border-radius: 40px;
			margin-top: -60px;
			margin-bottom: -60px;
        }
        
        .diamond img {
            position: absolute;
            width: 140%;
            height: 140%;
            top: -20%;
            left: -20%;
            object-fit: cover;
            transform: rotate(-45deg);
        }
        
        @media (max-width: 1024px) {
            .diamond-container {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .logo-section {
                width: 30%;
            }
            
            .photo-grid {
                width: 70%;
            }
            
            .diamond-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 576px) {
            .logo-section {
                width: 40%;
            }
            
            .photo-grid {
                width: 60%;
            }
            
            .diamond-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .logo-section h3 {
                font-size: 14px;
            }
            
            .logo-section h2 {
                font-size: 16px;
            }
        }
 
 
 
 
 /*----------------------------------------*/
 
          .capaContainerLogos {
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
            background-color: rgb(255 255 255 / 75%);
            padding: 15px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
 
 
         .containerLogos {
            width: 100%;
            max-width: 350px; /* Ajusta según el 30% de tu layout completo */
            margin: 0 auto;
            background-color: rgb(255 255 255 / 75%);
            padding: 15px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        
        .header-containerLogos {
            display: flex;
            align-items: center;
            margin-bottom: 1px;
        }
        
        .logo-containerLogos {
            flex: 0 0 auto;
            margin-right: 10px;
        }
        
        .logo-img {
            width: 100%;
            max-width: 100px;
            height: auto;
        }
        
        .journal-title {
            flex: 1;
            text-align: left;
        }
        
        .journal-title .revista, .journal-title .fitopatologia {
            color: #0A7A29;
            font-weight: bold;
        }
        
        .journal-title .mexicana-de {
            color: #545454;
            font-weight: normal;
        }
        
        .issn {
            font-size: 0.9em;
            text-align: right;
            color: #333;
            margin-top: 5px;
        }
        
        /* Estilos responsivos */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: row;
                align-items: center;
            }
            
            .logo-img {
                max-width: 80px;
            }
            
            .journal-title {
                font-size: 0.9em;
            }
        }
        
        @media (max-width: 480px) {
            .header-container {
                flex-direction: column;
                align-items: center;
            }
            
            .logo-container {
                margin-right: 0;
                margin-bottom: 10px;
            }
            
            .logo-img {
                max-width: 70px;
            }
            
            .journal-title {
                font-size: 0.8em;
                text-align: center;
            }
            
            .issn {
                font-size: 0.8em;
            }
        }
 
 
 