/* --- CSS Básico e Mobile First --- */
body {
        background-color: #e5e5e5;
}        
@media (min-width: 300px) {

.titulo1 {
        background-color: #3b599a;
        display: flex;
        align-items: center;
        height: 80px;
}
.titulo1 h1 {
        text-align:center;
        font-size: .7em;
        font-family: arial;
        color: white;        
        margin-bottom: 0;
        margin-top: 0;
        margin-left: 20px;        
        }
.titulo1 h2 {
        text-align:center;
        font-size: 1.5em;
        font-family: arial;
        color: red;
        }
.titulo1 img {
        float: left;
        width: 15%;
        margin-right: 15px;
        margin-left: 15px;
        margin-top: 5px;
        margin-bottom: 5px;
        }

.container {
    width: 100%;
    /* background-color: white; */
        }

.container p {
    text-align: left;
    font-size: 1.2em;
    margin-left: 10px;
    margin-right: 10px;
    color: #3b599a;
    font-family: arial;
}
.container  h2 {
        text-align:center;
        font-size: 1.5em;
        font-family: arial;
        color: #3b599a;
        }

.container button {
/*
        margin-left: auto;
        margin-right: auto;
*/
        width: 100%;
        height: 50px;
        margin-bottom: 25px;
        font-size: .8em;
        border-radius: 10px;
        /* padding: 10px 20px; */
        background-color: #1b5e20;
        color: #feffff;
        border: none;
        cursor: pointer;
        /* box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3); */
  /*       transition: all 0.3s ease; */
/*         font-weight: bold; */
        text-transform: uppercase;
        display: inline-block;
        text-align: center;
        text-decoration: none;
        }
.container a {
        text-decoration: none;
        color: inherit;
    }        
.container2 button {
        margin-left: auto;
        margin-right: auto;
        width: 48%;
        height: 100px;
        margin-bottom: 25px;
        font-size: .8em;
        border-radius: 10px;
        /* padding: 10px 20px; */
        background-color: #1b5e20;
        color: white;
        border: none;
        cursor: pointer;
        text-transform: uppercase;
        display: inline-block;
        text-align: center;
        text-decoration: none;
        }    
.container body {
        width: 100%;
        margin-left: auto;
        margin-right: auto;}        
        }
.container2 a {
        text-decoration: none;
        color: inherit;
    }
.container img {
        width: 100%;
        background-color: white;        
}
/* ------------------------------------------------------------------------------------------ * Estilo Desktop (telas maiores) */

@media (min-width: 768px) {

.titulo1 {
        background-color: #3b599a;        
        display: flex;
        align-items: center;
        height: 120px;
        }

.titulo1 h1 {
        text-align:left;
        font-size: 1.4em;
        font-family: helvetica;
        color: white;
        margin-bottom: 0;
        margin-left: 15%;
        }
.titulo1 h2 {
        text-align:left;
        font-size: 1.4em;
        font-family: helvetica;
        color: #3f51b5;
        margin-top: 0;
        margin-left: 15%;
        }
.titulo1 img {
        float: left;
        width: 100px;
        margin-left: 20px;
        }                

 .container {
        width: 60%;
        margin-left: auto;
        margin-right: auto;        
        }
  .container p {
    text-align: justify;
    color: #3b599a;
    font-size: 1.2em;
    margin-left: 30px;
    margin-right: 10px;
    }
.container  h2 {
        text-align:center;
        font-size: 2.5em;
        font-family: arial;
        color: #3f51b5;
        }
.container button {
        width: 100%; /* largura */
        height: 80px; /* Altura */
        margin-bottom: 25px;
        border: none;
        border-radius: 10px;
        background-color: #1b5e20;
       /* box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3); */
        transition: all 0.3s ease;
        padding: 10px 10px;
        cursor: pointer;
        font-size: 2em;
        /* font-weight: bold; */
        text-transform: uppercase;
        color: #feffff;
        display: inline-block;
        text-align: center;
    }
.container body {
        width: 80%;
        margin-left: auto;
        margin-right: auto;}
.container a {
        text-decoration: none;
        color: inherit;
    }
.container img {
        width: 35%;        
}

.container2 button {
        margin-left: auto;
        margin-right: auto;
        width: 48%;
        height: 100px;
        margin-bottom: 25px;
        font-size: 2em;
        border-radius: 10px;
        /* padding: 10px 20px; */
        background-color: #1b5e20;
        color: white;
        border: none;
        cursor: pointer;
        text-transform: uppercase;
        display: inline-block;
        text-align: center;
        text-decoration: none;
        }    
.container2 body {
        width: 80%;
        margin-left: auto;
        margin-right: auto;}
.container2 a {
        text-decoration: none;
        color: inherit;
    }
.container2 img {
        width: 35%;        
}
.container2 {
        width: 100%;
        margin-left: auto;
        margin-right: auto;}
}
.blink_me {
             animation: blinker 1s linear infinite;
            }
  @keyframes blinker {  
            15% { opacity: 0;
            color: red;
            font-size: 1.5;
            }
            }
  .blink    {animation: blink 1s steps(1, end) infinite;
            }
  @keyframes blink {
                     0%   {opacity: 1;}
                     50%  {opacity: 0;}
                     100% {opacity: 1;}