/*!
Theme Name: digitaltresmedia
Theme URI: http://tres.pe/
Author: Tresmedia
Author URI: http://tres.pe/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: digitaltresmedia
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

digital is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/* normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

 .footer .logo img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: .5;
    -webkit-transition: opacity .3s ease, -webkit-filter .3s ease;
    transition: opacity .3s ease, -webkit-filter .3s ease;
    transition: filter .3s ease, opacity .3s ease;
    transition: filter .3s ease, opacity .3s ease, -webkit-filter .3s ease;
    -webkit-transition: -webkit-filter .3s ease, opacity .3s ease;
}

.footer .logo:hover img {
    opacity: 1;
    -webkit-filter: grayscale(0);
    filter: grayscale(0)
}



.logo:hover img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: .5;
    -webkit-transition: opacity .3s ease, -webkit-filter .3s ease;
    transition: opacity .3s ease, -webkit-filter .3s ease;
    transition: filter .3s ease, opacity .3s ease;
    transition: filter .3s ease, opacity .3s ease, -webkit-filter .3s ease;
    -webkit-transition: -webkit-filter .3s ease, opacity .3s ease;
}

.logo img {
    opacity: 1;
    -webkit-filter: grayscale(0);
    filter: grayscale(0)
}

.site-main .section-masthead__line{
    width: 1px;
    height: 150px;
    background-color: #e64641;
    margin-left: auto;
    margin-right: auto;
	bottom: 0;
	position:relative;
}


@media screen and (max-width: 782px){
.subtitulopagina{font-size: 18px;}
.section-logos__item img{max-height:none;}
.site-main .subtitulopagina{font-size: 18px;}
header .button {display:none;}
.titulopagina{font-size: 1em !important;}
}

input::placeholder, textarea::placeholder {
  color: #ccc;
  font-size: 1.2em;
}
#formulario-contacto input::placeholder, textarea::placeholder {
  color: #999;
  font-size: 1.2em;
}

header .button {
    padding: 15px;
}
.titulopagina {
font-size: 18px;
}

.section-contact__wrapper-form-inner{text-align:left !important;}

.wpcf7 .wpcf7-submit:disabled{background-color: #999; border:#888 2px solid;}

.section-contact__wrapper-form a{color:#fff !important;}

.whatsapp-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            text-decoration: none;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            animation: whatsappAnimation 0.5s ease-out forwards;
        }

        .whatsapp-btn::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: inherit;
            border-radius: inherit;
            transition: transform 0.3s ease;
            z-index: -1;
        }

        .whatsapp-btn:hover::after {
            transform: scale(1.1);
        }
.whatsapp-btn svg {
    width: 65%;  /* Reducido de 60% a 50% */
    height: 65%;  /* Reducido de 60% a 50% */
    fill: white;  /* Cambiado de currentColor a white */
}

        @keyframes whatsappAnimation {
            0% {
                transform: rotate(-360deg);
                opacity: 0;
                width: 0;
                height: 0;
                font-size: 0;
            }
            100% {
                transform: rotate(0deg);
                opacity: 1;
                width: 60px;
                height: 60px;
                font-size: 30px;
            }
        }